/* =========================================
   AGBOR COUNCIL OF CHIEFS
========================================= */

.council-hero {
    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            rgba(20, 15, 10, 0.62),
            rgba(20, 15, 10, 0.75)
        ),
        url("../images/council-hero.jpg")
        center / cover no-repeat;
}


.council-hero-content {
    position: relative;

    max-width: 800px;

    padding: 100px 0;

    color: white;

    animation: councilHeroIn 0.9s ease both;
}


.council-hero-content .section-label {
    color: var(--royal-gold);
}


.council-hero-content h1 {
    margin: 15px 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(42px, 7vw, 74px);

    line-height: 1.05;
}


.council-hero-content p {
    max-width: 650px;

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================
   INTRODUCTION
========================================= */

.council-introduction {
    padding: 100px 0;
}


.council-heading {
    max-width: 750px;

    margin: 0 auto 55px;

    text-align: center;
}


.council-heading h2 {
    margin: 15px 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(34px, 5vw, 54px);

    line-height: 1.15;

    color: var(--royal-primary);
}


.council-heading p {
    color: #666;

    line-height: 1.8;
}


/* =========================================
   CHIEFS GRID
========================================= */

.chiefs-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================
   CHIEF CARD
========================================= */

.chief-card {
    overflow: hidden;

    background: white;

    border:
        1px solid
        rgba(0, 0, 0, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.chief-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.12);
}


/* =========================================
   CHIEF IMAGE
========================================= */

.chief-image {
    position: relative;

    height: 360px;

    overflow: hidden;

    background: #eee;
}


.chief-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


.chief-card:hover
.chief-image img {
    transform: scale(1.04);
}


.chief-number {
    position: absolute;

    top: 18px;

    left: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 45px;

    height: 45px;

    background: var(--royal-primary);

    color: white;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================
   CHIEF CONTENT
========================================= */

.chief-content {
    padding: 28px;
}


.chief-label {
    color: var(--royal-gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.chief-content h3 {
    margin: 10px 0 5px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 26px;

    color: var(--royal-primary);
}


.chief-title {
    display: block;

    margin-bottom: 10px;

    color: #777;

    font-size: 14px;

    font-weight: 600;
}


.chief-community {
    display: inline-block;

    margin-bottom: 16px;

    padding: 6px 10px;

    background: #f4f1e9;

    color: var(--royal-primary);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.8px;
}


.chief-content p {
    margin: 0;

    color: #666;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   COUNCIL ROLE
========================================= */

.council-role {
    padding: 100px 0;

    background: #f7f5f0;
}


.council-role-grid {
    display: grid;

    grid-template-columns:
        1.4fr 0.6fr;

    gap: 60px;

    align-items: center;
}


.council-role-content h2 {
    margin: 15px 0 25px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.15;

    color: var(--royal-primary);
}


.council-role-content p {
    max-width: 700px;

    color: #555;

    line-height: 1.9;
}


.council-role-box {
    min-height: 250px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: var(--royal-primary);

    color: white;

    text-align: center;
}


.council-role-box span {
    color: var(--royal-gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;
}


.council-role-box strong {
    margin: 8px 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 40px;
}


.council-role-box small {
    font-size: 10px;

    letter-spacing: 2px;
}


/* =========================================
   ANIMATION
========================================= */

@keyframes councilHeroIn {

    from {
        opacity: 0;

        transform:
            translateY(30px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .chiefs-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .council-role-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .council-hero {
        min-height: 430px;
    }


    .council-hero-content {
        padding: 75px 0;
    }


    .council-hero-content h1 {
        font-size: 42px;
    }


    .council-hero-content p {
        font-size: 16px;
    }


    .council-introduction,
    .council-role {
        padding: 70px 0;
    }


    .chiefs-grid {
        grid-template-columns: 1fr;
    }


    .chief-image {
        height: 390px;
    }


    .council-role-box {
        min-height: 210px;
    }

}