/*=========================================================
 NIC Kerala Onam Celebration 2026
 Coordinators CSS
=========================================================*/


/*=========================================================
 HERO
=========================================================*/


.coordinatorHero {

    min-height: 60vh;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;


    background:

        linear-gradient(135deg,
            rgba(255, 213, 79, .92),
            rgba(255, 152, 0, .88)),

        url("../images/onam-bg.jpg");


    background-size: cover;

    background-position: center;

    overflow: hidden;

}



.coordinatorOverlay {

    position: absolute;

    inset: 0;


    background:

        radial-gradient(circle,
            transparent,
            rgba(0, 0, 0, .35));

}



.coordinatorHeroContent {


    position: relative;

    z-index: 2;


    text-align: center;

    color: white;


    max-width: 900px;


    padding: 40px 20px;


}



.coordinatorHeroContent .tag {


    display: inline-block;


    padding: 8px 22px;


    border-radius: 30px;


    background:

        rgba(255, 255, 255, .25);


    backdrop-filter: blur(10px);


    font-size: 18px;


    margin-bottom: 20px;


}



.coordinatorHeroContent h1 {


    font-family: "Cinzel", serif;


    font-size: 58px;


    font-weight: 900;


    margin: 10px 0;


}



.coordinatorHeroContent h2 {


    font-size: 32px;

    margin-bottom: 20px;

}



.coordinatorHeroContent p {


    font-size: 18px;

    line-height: 1.7;

}





.coordinatorHero .heroInfo {


    display: flex;


    justify-content: center;


    flex-wrap: wrap;


    gap: 20px;


    margin-top: 35px;


}



.coordinatorHero .heroInfo div {


    padding: 12px 25px;


    border-radius: 30px;


    background:

        rgba(255, 255, 255, .22);


    backdrop-filter: blur(10px);


}





/*=========================================================
 SECTION
=========================================================*/


.coordinatorSection {


    padding: 80px 8%;


    background: #f7f8fb;


}





/*=========================================================
 LEADERSHIP
=========================================================*/


.leadershipGrid {


    display: grid;


    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));


    gap: 30px;


    margin-top: 45px;


}





.leaderCard {


    background: white;


    border-radius: 25px;


    padding: 35px 25px;


    text-align: center;


    position: relative;


    overflow: hidden;


    box-shadow:

        0 15px 40px rgba(0, 0, 0, .08);


    transition: .35s;


}



.leaderCard::before {


    content: "";


    position: absolute;


    top: 0;

    left: 0;


    width: 100%;


    height: 6px;


    background:

        linear-gradient(90deg,
            #ffd54f,
            #ff9800);


}



.leaderCard:hover {


    transform: translateY(-8px);


    box-shadow:

        0 25px 50px rgba(255, 152, 0, .25);


}





.leaderIcon {


    width: 70px;


    height: 70px;


    margin: auto;


    border-radius: 50%;


    display: flex;


    align-items: center;


    justify-content: center;


    font-size: 32px;


    background:

        linear-gradient(135deg,
            #ffd54f,
            #ff9800);


    color: white;


}



.leaderCard h3 {


    margin-top: 20px;


    font-size: 22px;


    color: #1e293b;


}



.leaderCard h4 {


    margin-top: 10px;


    color: #ff9800;


}



.leaderCard p {


    color: #64748b;


}







/*=========================================================
 TEAM GRID
=========================================================*/


.teamsGrid {


    margin-top: 60px;


    display: grid;


    grid-template-columns:

        repeat(auto-fit, minmax(280px, 1fr));


    gap: 25px;


}







.teamCard {


    background: white;


    border-radius: 22px;


    padding: 22px;


    box-shadow:

        0 12px 35px rgba(0, 0, 0, .08);


    transition: .3s;


    position: relative;


    overflow: hidden;


}



.teamCard:hover {


    transform: translateY(-6px);


    box-shadow:

        0 20px 45px rgba(255, 152, 0, .22);


}



.teamCard::after {


    content: "🌸";


    position: absolute;


    right: -10px;


    bottom: -15px;


    font-size: 70px;


    opacity: .08;


}






.teamHeader {


    display: flex;


    align-items: center;


    gap: 15px;


    margin-bottom: 20px;


}



.teamHeader span {


    width: 42px;


    height: 42px;


    display: flex;


    align-items: center;


    justify-content: center;


    border-radius: 50%;


    background:

        linear-gradient(135deg,
            #ffd54f,
            #ff9800);


    color: white;


    font-weight: 700;


}



.teamHeader h3 {


    margin: 0;


    color: #1e293b;


    font-size: 22px;


}







.personBox {


    background: #fff7ed;


    padding: 15px;


    border-radius: 15px;


    margin-top: 15px;


}



.personBox h4 {


    color: #ea580c;


    font-size: 15px;


    margin-bottom: 10px;


}



.personBox p {


    margin: 6px 0;


    color: #475569;


    font-size: 14px;


}



.captain {


    background: #fffbeb;


}







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


@media(max-width:768px) {



    .coordinatorHero {


        min-height: 50vh;


    }



    .coordinatorHeroContent h1 {


        font-size: 38px;


    }



    .coordinatorHeroContent h2 {


        font-size: 22px;


    }



    .coordinatorSection {


        padding: 50px 20px;


    }



    .teamCard {


        padding: 20px;


    }


}