:root{
    --orange:#F58220;
    --dark:#202124;
}

/* -------------------------
   GLOBAL
------------------------- */

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter,sans-serif;
    color:#444;
    overflow-x:hidden;
}

h1,h2,h3,h4,h5{
    font-family:Poppins,sans-serif;
}

/* -------------------------
   NAVBAR
------------------------- */

.navbar{
    background:rgba(15,15,15,.45);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    min-height:90px;
    padding:10px 0;
    transition:all .35s ease;
}

.navbar.scrolled{
    background:rgba(15,15,15,.95);
    backdrop-filter:blur(16px);
    box-shadow:0 8px 25px rgba(0,0,0,.30);
}

.navbar-brand{
    padding:0;
    margin:0;
    display:flex;
    align-items:center;
}

.navbar-brand img{
    height:88px;
    width:auto;
    display:block;
    transition:all .3s ease;
}

.navbar.scrolled .navbar-brand img{
    height:80px;
}

.navbar-nav{
    align-items:center;
}

.navbar-nav .nav-link{
    color:#fff !important;
    font-weight:600;
    margin-left:22px;
    font-size:16px;
    transition:.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:var(--orange) !important;
}

.navbar .btn-warning{
    border-radius:40px;
    padding:10px 26px;
    font-weight:600;
    transition:.3s;
}

.navbar .btn-warning:hover{
    transform:translateY(-2px);
}

/* -------------------------
   HERO
------------------------- */

.hero{
    min-height:100vh;
    padding-top:90px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;

    background:
    linear-gradient(rgba(0,0,0,.58),rgba(0,0,0,.58)),
    url('https://orangerunners.com/assets/images/bg.png')
    center center/cover no-repeat;
}

.hero h1{
    font-size:64px;
    font-weight:800;
    line-height:1.1;
}

.hero p{
    font-size:22px;
    max-width:700px;
    margin:auto;
}

/* -------------------------
   BUTTONS
------------------------- */

.btn-orange{
    background:var(--orange);
    color:#fff;
    border-radius:50px;
    padding:14px 34px;
    font-weight:600;
    transition:.3s;
}

.btn-orange:hover{
    background:#df6f10;
    color:#fff;
    transform:translateY(-2px);
}

.btn-outline-light{
    border-radius:50px;
    padding:14px 34px;
}

/* -------------------------
   STATS
------------------------- */

.stat{
    padding:28px;
    border-radius:18px;
    background:#fff;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.stat:hover{
    transform:translateY(-5px);
}

/* -------------------------
   SECTIONS
------------------------- */

section{
    padding:90px 0;
}

/* -------------------------
   FOOTER
------------------------- */

.footer{
    background:#171717;
    color:#fff;
    padding:70px 0 40px;
}

/* -------------------------
   MOBILE
------------------------- */

@media (max-width:991px){
	/* Hero Buttons */
.hero .btn{
    display:block;
    width:100%;
    max-width:400px;
    margin:15px auto 0;
}

.hero .btn:first-child{
    margin-top:30px;
}

.hero .btn-outline-light{
    margin-top:18px;
}

    .navbar{
        min-height:78px;
        padding:8px 0;
    }

    .navbar-brand img{
        height:65px;
    }

    .navbar.scrolled .navbar-brand img{
        height:60px;
    }

    .navbar-collapse{
        background:rgba(20,20,20,.96);
        padding:20px;
        border-radius:15px;
        margin-top:15px;
    }

    .navbar-nav .nav-link{
        margin:12px 0;
        text-align:center;
    }

    .navbar .btn-warning{
        width:100%;
        margin-top:10px;
    }

    .hero{
        padding-top:80px;
    }

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

    .hero p{
        font-size:18px;
    }

}
.hero-buttons{
    display:flex;
    gap:18px;
    justify-content:center;
    align-items:center;
    margin-top:35px;
}

@media(max-width:991px){

    .hero-buttons{
        flex-direction:column;
        gap:15px;
    }

    .hero-buttons .btn{
        width:100%;
        max-width:320px;
        margin:0;
    }
}
/*====================================
        LEADERSHIP PAGE
====================================*/

.page-header{
    padding:170px 0 90px;
    background:
    linear-gradient(rgba(0,0,0,.70),rgba(0,0,0,.70)),
    url('../images/bg.png') center center/cover no-repeat;
    text-align:center;
}

.page-header h1{
    font-size:54px;
    font-weight:800;
}

.page-header p{
    max-width:760px;
    margin:auto;
    font-size:20px;
}

/* Heading */




/*====================================
        LEADER CARD
====================================*/

.leader-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
    text-align:center;
}

.leader-card:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.leader-card img{

    width:100%;
    height:260px;
    object-fit:cover;
    object-position:center 12%;
    display:block;
    transition:.4s;

}

.leader-card:hover img{

    transform:scale(1.05);

}


/*====================================
        FEATURED MEMBERS
====================================*/

.leader-featured{

    border:2px solid rgba(245,130,32,.15);

}

.leader-featured img{

    height:360px;
    object-fit:cover;
    object-position:center 8%;

}

.leader-featured .leader-body{

    padding:26px;

}

.leader-featured h3{

    font-size:30px;
    font-weight:700;
    color:#333;
    margin-bottom:12px;

}


/*====================================
        MEMBER DETAILS
====================================*/

.leader-body{

    padding:18px;

}

.leader-body h3,
.leader-body h4,
.leader-body h5{

    margin-bottom:12px;
    font-weight:700;
    color:#333;

}

.leader-body h5{

    font-size:18px;

}

.leader-role{

    display:inline-block;
    padding:6px 16px;
    background:#F58220;
    color:#fff;
    border-radius:30px;
    font-size:11px;
    font-weight:600;
    letter-spacing:.8px;
    text-transform:uppercase;

}


/*====================================
        ROW SPACING
====================================*/

.leadership-row{

    margin-bottom:70px;

}


/*====================================
        EXECUTIVE COMMITTEE
====================================*/

.executive-title{

    margin-top:20px;
    margin-bottom:40px;

}

.executive-title h2{

    font-weight:700;
    color:#333;

}


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

@media(max-width:991px){

.page-header{

    padding:140px 0 70px;

}

.page-header h1{

    font-size:40px;

}

.page-header p{

    font-size:18px;

}

.leader-featured img{

    height:300px;

}

.leader-card img{

    height:220px;

}

}

@media(max-width:767px){

.leader-featured img{
    height:360px;
    object-fit:cover;
    object-position:center top;
}

.leader-card img{
    height:320px;
    object-fit:cover;
    object-position:center top;
}

}

.leader-body{

    padding:15px;

}

.leader-body h3{

    font-size:22px;

}

.leader-body h5{

    font-size:16px;

}

}

.orange-line{
    width:80px;
    height:4px;
    background:#F58220;
    border-radius:5px;
    margin-top:12px;
}
/* Executive Committee */

.executive-members .leader-card{
    max-width:280px;
    margin:auto;
    width:100%;
}
.executive-members .leader-card img{
    height:320px;
    object-fit:cover;
    object-position:center top;
}
/*====================================
            EVENTS PAGE
====================================*/

.event-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.event-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.event-card img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    transition:.4s;
}

.event-card:hover img{
    transform:scale(1.05);
}

.event-body{
    padding:24px;
}

.event-year{
    display:inline-block;
    background:#F58220;
    color:#fff;
    padding:6px 16px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    margin-bottom:15px;
}

.event-body h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    color:#222;
}

.event-body p{
    color:#666;
    margin-bottom:20px;
}

.event-body .btn{
    border-radius:30px;
    padding:10px 24px;
}

.events-section{
    background:#f8f9fa;
}
/*====================================
            EVENTS
====================================*/

.events-section{
    background:#f8f9fa;
}

.event-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:all .35s ease;
    height:100%;
}

.event-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.event-image{
    overflow:hidden;
}

.event-image img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    transition:.4s;
}

.event-card:hover .event-image img{
    transform:scale(1.06);
}

.event-content{
    padding:28px;
}

.event-year{
    display:inline-block;
    padding:5px 14px;
    background:#F58220;
    color:#fff;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    margin-bottom:15px;
}

.event-content h3{
      font-size:22px;
    line-height:1.3;
    font-weight:700;
    margin-bottom:12px;
}

.event-content p{
    color:#666;
    margin-bottom:20px;
    min-height:60px;
}

.event-content .btn{
    border-radius:30px;
    padding:10px 24px;
}
.event-card{
    display:flex;
    flex-direction:column;
}

.event-content{
    display:flex;
    flex-direction:column;
    flex:1;
}

.event-content .btn{
    margin-top:auto;
}