/* ==========================================================
   IMPACT & LEGACY COLLECTIVE
   Professional Stylesheet
========================================================== */

/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

/* ROOT VARIABLES */

:root{

    --primary:#5B1220;
    --primary-dark:#48101A;
    --gold:#F0D27F;
    --cream:#F8F6F1;
    --white:#FFFFFF;
    --text:#222222;
    --grey:#6B7280;

    --radius:18px;

    --shadow:0 15px 40px rgba(0,0,0,.12);

    --transition:.35s;

}

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:var(--cream);
    color:var(--text);
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

section{

    padding:100px 0;

}

/* ==========================
   NAVIGATION
========================== */

.custom-navbar{

    background:var(--primary);

    height:90px;

    padding:0 40px;

    transition:.3s;

    box-shadow:0 3px 15px rgba(0,0,0,.08);

}

.nav-container{

    display:flex;
    align-items:center;
    justify-content:space-between;

}

.navbar-brand{

    display:flex;
    align-items:center;

}

.nav-logo{

    width:72px;

    margin-right:15px;

}

.brand-text{

    color:white;

    font-size:30px;

    font-family:'Playfair Display',serif;

    font-weight:700;

}

.nav-menu{

    margin:auto;

}

.nav-menu .nav-item{

    margin:0 10px;

}

.nav-menu .nav-link{

    color:white;

    font-weight:600;

    transition:.3s;

    padding:10px 14px;

}

.nav-menu .nav-link:hover{

    color:var(--gold);

}

.nav-menu .nav-link.active{

    color:var(--gold);

}

/* NAV BUTTONS */

.nav-actions{

    display:flex;

    align-items:center;

    gap:15px;

}

.nav-login-btn{

    border:2px solid white;

    color:white;

    padding:11px 20px;

    border-radius:50px;

    transition:.3s;

    font-weight:600;

}

.nav-login-btn:hover{

    background:white;

    color:var(--primary);

}

.nav-apply-btn{

    background:var(--gold);

    color:var(--primary);

    padding:12px 30px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}

.nav-apply-btn:hover{

    background:#e6c65b;

}

/* =========================================================
   DESKTOP HERO POSITIONING
========================================================= */

.hero {
    margin-top: 0;
    overflow: hidden;
}

.hero-row {
    min-height: 650px;
}

.hero-left {
    background: var(--primary);
    display: flex;
    align-items: center;
    padding: 70px 90px;
}

.hero-content {
    max-width: 700px;
}
.hero-row{

    min-height:760px;

}

.hero-left{

    background:var(--primary);

    display:flex;

    align-items:center;

    padding:90px;

}

.hero-right{

    background:var(--cream);

}

.hero-content{

    max-width:700px;

}

.hero-tag{

    display:inline-block;

    background:var(--gold);

    color:var(--primary);

    padding:10px 22px;

    border-radius:40px;

    font-weight:700;

    margin-bottom:35px;

}

.hero h1{

    color:white;

    font-family:'Playfair Display',serif;

    font-size:72px;

    line-height:1.1;

    margin-bottom:30px;

}

.hero p{

    color:white;

    font-size:20px;

    line-height:1.9;

    margin-bottom:40px;

}

/* HERO BUTTONS */

.hero-buttons{

    display:flex;

    gap:20px;

}

.hero-primary-btn{

    background:var(--gold);

    color:var(--primary);

    padding:15px 34px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}

.hero-primary-btn:hover{

    transform:translateY(-3px);

}

.hero-secondary-btn{

    border:2px solid white;

    color:white;

    padding:15px 34px;

    border-radius:50px;

    transition:.3s;

}

.hero-secondary-btn:hover{

    background:white;

    color:var(--primary);

}
/*==========================================================
SECTION TITLES
==========================================================*/

.content-section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-label{
    display:inline-block;
    background:#F1E4B8;
    color:var(--primary);
    font-weight:600;
    letter-spacing:1px;
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:20px;
    font-size:14px;
}

.gold-label{
    background:rgba(212,175,55,.15);
    color:#D4AF37;
}

.section-title h2{

    font-family:'Playfair Display',serif;

    font-size:48px;

    color:var(--primary);

    margin-bottom:25px;

}

.light-title h2{

    color:white;

}

.section-title p{

    max-width:760px;

    margin:auto;

    color:var(--grey);

    font-size:18px;

    line-height:1.9;

}

/*==========================================================
INFO CARDS
==========================================================*/

.info-card{

    background:white;

    border-radius:20px;

    padding:40px;

    height:100%;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    border-top:5px solid transparent;

}

.info-card:hover{

    transform:translateY(-10px);

    border-top:5px solid var(--gold);

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.card-icon{

    width:75px;

    height:75px;

    background:rgba(212,175,55,.12);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.card-icon i{

    font-size:34px;

    color:var(--gold);

}

.info-card h4{

    font-family:'Playfair Display',serif;

    color:var(--primary);

    margin-bottom:18px;

}

.info-card p{

    color:var(--grey);

    line-height:1.8;

}

.card-link{

    margin-top:20px;

    display:inline-block;

    color:var(--primary);

    font-weight:600;

}

.card-link:hover{

    color:var(--gold);

}

/*==========================================================
FOUNDING BELIEF
==========================================================*/

.founding-belief{

    background:white;

}

.belief-panel{

    background:linear-gradient(135deg,#5B1220,#48101A);

    color:white;

    border-radius:25px;

    padding:70px 50px;

    text-align:center;

    min-height:420px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    box-shadow:var(--shadow);

}

.belief-panel span{

    color:var(--gold);

    letter-spacing:3px;

    font-size:14px;

    margin:15px 0;

}

.belief-panel h3{

    font-family:'Playfair Display',serif;

    font-size:40px;

    margin:30px 0;

}

.section-btn{

    display:inline-block;

    margin-top:30px;

    background:var(--gold);

    color:var(--primary);

    padding:14px 30px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}

.section-btn:hover{

    transform:translateY(-3px);

}

/*==========================================================
PROGRAMME SECTION
==========================================================*/

.programme-section{

    background:linear-gradient(135deg,#5B1220,#48101A);

}

.programme-card{

    background:white;

    border-radius:20px;

    padding:40px;

    text-align:center;

    transition:.35s;

    height:100%;

}

.programme-card:hover{

    transform:translateY(-8px);

}

.programme-card i{

    color:var(--gold);

    font-size:42px;

    margin-bottom:20px;

}

.programme-card h4{

    color:var(--primary);

    margin-bottom:18px;

    font-family:'Playfair Display',serif;

}
/*==========================================================
MEMBERSHIP SECTION
==========================================================*/

.membership-section{

    background:#FCFBF8;

}

.membership-card{

    background:white;

    border-radius:25px;

    padding:45px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    position:relative;

    height:100%;

    transition:.35s;

}

.membership-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.membership-card.featured{

    border:3px solid var(--gold);

}

.featured-badge{

    position:absolute;

    top:-18px;

    right:30px;

    background:var(--gold);

    color:var(--primary);

    padding:10px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

}

.membership-type{

    display:inline-block;

    color:var(--gold);

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:15px;

}

.membership-card h3{

    font-family:'Playfair Display',serif;

    color:var(--primary);

    margin-bottom:20px;

    font-size:34px;

}

.membership-card p{

    color:var(--grey);

    line-height:1.8;

}

.membership-card ul{

    list-style:none;

    margin:30px 0;

    padding:0;

}

.membership-card li{

    margin-bottom:18px;

    display:flex;

    align-items:center;

}

.membership-card li i{

    color:var(--gold);

    margin-right:12px;

    font-size:18px;

}

.membership-btn{

    display:inline-block;

    background:var(--gold);

    color:var(--primary);

    padding:15px 32px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}

.membership-btn:hover{

    background:#e6c65b;

    transform:translateY(-3px);

}

/*==========================================================
FOUNDING MOMENTUM
==========================================================*/

.momentum-section{

    background:white;

}

.momentum-date{

    color:var(--gold);

    font-weight:700;

    font-size:18px;

    margin:25px 0;

}

.momentum-card{

    background:linear-gradient(135deg,#5B1220,#48101A);

    color:white;

    border-radius:25px;

    padding:60px;

    text-align:center;

    min-height:380px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.momentum-card i{

    font-size:70px;

    color:var(--gold);

    margin-bottom:25px;

}

.momentum-card h3{

    font-family:'Playfair Display',serif;

    margin-bottom:25px;

    font-size:34px;

}

/*==========================================================
PARTNERS
==========================================================*/

.partner-section{

    background:#F8F6F1;

}

.partner-values{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.partner-value{

    background:white;

    border-radius:18px;

    padding:25px;

    display:flex;

    align-items:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.partner-value:hover{

    transform:translateX(8px);

}

.partner-value i{

    width:60px;

    height:60px;

    background:rgba(212,175,55,.15);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--gold);

    font-size:28px;

    margin-right:20px;

}

.partner-value span{

    font-weight:600;

    color:var(--primary);

}

/*==========================================================
CTA
==========================================================*/

.cta-section{

    background:linear-gradient(135deg,#5B1220,#48101A);

    color:white;

    padding:120px 0;

}

.cta-small{

    display:inline-block;

    color:var(--gold);

    letter-spacing:2px;

    margin-bottom:25px;

}

.cta-section h2{

    font-family:'Playfair Display',serif;

    font-size:58px;

    margin-bottom:25px;

}

.cta-section p{

    max-width:700px;

    margin:auto;

    line-height:1.9;

    margin-bottom:45px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-primary-btn{

    background:var(--gold);

    color:var(--primary);

    padding:16px 36px;

    border-radius:50px;

    font-weight:700;

}

.cta-secondary-btn{

    border:2px solid white;

    color:white;

    padding:16px 36px;

    border-radius:50px;

    font-weight:600;

}

.cta-primary-btn:hover,
.cta-secondary-btn:hover{

    transform:translateY(-4px);

}

/*==========================================================
FOOTER
==========================================================*/

.main-footer{

    background:#2A0B12;

    color:white;

    padding:90px 0 30px;

}

.footer-brand{

    display:flex;

    align-items:center;

    margin-bottom:20px;

}

.footer-logo{

    width:75px;

    margin-right:15px;

}

.footer-brand h3{

    font-family:'Playfair Display',serif;

    color:white;

}

.main-footer h5{

    color:var(--gold);

    margin-bottom:25px;

}

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:white;

    transition:.3s;

}

.footer-links a:hover{

    color:var(--gold);

}

.social-icons{

    display:flex;

    gap:15px;

}

.social-icons a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    transition:.3s;

}

.social-icons a:hover{

    background:var(--gold);

    color:var(--primary);

}

.footer-divider{

    margin:60px 0 30px;

    border-color:rgba(255,255,255,.15);

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    color:#d5d5d5;

    font-size:15px;

}
/*==========================================================
SMOOTH ANIMATIONS
==========================================================*/

html{
    scroll-behavior:smooth;
}

*{
    transition:
        background-color .3s ease,
        color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

img{
    transition:transform .4s ease;
}

img:hover{
    transform:scale(1.03);
}

/*==========================================================
BUTTON HOVER EFFECTS
==========================================================*/

.nav-login-btn:hover,
.nav-apply-btn:hover,
.hero-primary-btn:hover,
.hero-secondary-btn:hover,
.section-btn:hover,
.membership-btn:hover,
.cta-primary-btn:hover,
.cta-secondary-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 25px rgba(0,0,0,.18);

}

/*==========================================================
CARD ANIMATIONS
==========================================================*/

.info-card,
.programme-card,
.membership-card,
.partner-value{

    transition:all .35s ease;

}

.info-card:hover,
.programme-card:hover,
.membership-card:hover{

    transform:translateY(-10px);

}

.partner-value:hover{

    transform:translateX(8px);

}

/*==========================================================
SCROLLBAR
==========================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#F8F6F1;

}

::-webkit-scrollbar-thumb{

    background:#5B1220;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#D4AF37;

}
/*==========================================================
RESPONSIVE - LARGE TABLETS
==========================================================*/

@media (max-width:1200px){

    .hero h1{
        font-size:58px;
    }

    .hero-left{
        padding:70px;
    }

    .brand-text{
        font-size:26px;
    }

}


/*==========================================================
RESPONSIVE - TABLETS
==========================================================*/

@media (max-width:992px){

    .custom-navbar{
        height:auto;
        padding:15px 20px;
    }

    .nav-container{
        display:block;
    }

    .nav-menu{
        margin-top:20px;
    }

    .nav-actions{
        margin-top:25px;
        flex-direction:column;
        align-items:flex-start;
    }

    .hero{
        margin-top:100px;
    }

    .hero-row{
        min-height:auto;
    }

    .hero-left{
        padding:70px 40px;
    }

    .hero-right{
        display:none;
    }

    .hero h1{
        font-size:48px;
    }

    .hero p{
        font-size:18px;
    }

    .section-title h2{
        font-size:38px;
    }

    .cta-section h2{
        font-size:42px;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
        gap:15px;
    }

}


/*==========================================================
RESPONSIVE - MOBILE
==========================================================*/

@media (max-width:768px){

    .nav-logo{
        width:85px;
        height:70px;
        object-fit:contain;
    }

    .brand-text{
        font-size:22px;
    }

    .hero-left{
        padding:50px 25px;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:17px;
    }

    /* HERO BUTTONS */
    .hero-buttons{
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .hero-primary-btn,
    .hero-secondary-btn{
        display:inline-block;
        width:auto;
        max-width:100%;
        text-align:center;
        white-space:nowrap;
    }

    .section-title h2{
        font-size:32px;
    }

    .info-card,
    .programme-card,
    .membership-card{
        padding:30px;
    }

    .cta-section{
        padding:80px 20px;
    }

    .cta-section h2{
        font-size:34px;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .cta-primary-btn,
    .cta-secondary-btn{
        width:100%;
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }

}


/*==========================================================
RESPONSIVE - SMALL PHONES
==========================================================*/

@media (max-width:480px){

    .hero h1{
        font-size:30px;
    }

    .hero-tag{
        font-size:13px;
    }

    .brand-text{
        font-size:19px;
    }

    .section-title h2{
        font-size:28px;
    }

    .footer-brand{
        flex-direction:column;
        text-align:center;
    }

    .footer-logo{
        margin-right:0;
        margin-bottom:15px;
    }

    /* Keep hero buttons compact on very small screens */
    .hero-primary-btn,
    .hero-secondary-btn{
        width:auto;
        max-width:100%;
        white-space:normal;
    }

}


/*==========================================================
HERO PANEL
==========================================================*/

.hero-panel h3,
.hero-panel h4{
    color:#222222;
}

.hero-panel p{
    color:#D4AF37;
}

.hero-panel hr{
    border-color:#D4AF37;
}


/*==========================================================
MEMBERSHIP BUTTON
==========================================================*/

.membership-btn{
    display:inline-block;
    margin-top:25px;
    background:#D4AF37;
    color:#fff;
    padding:14px 30px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.membership-btn:hover{
    background:#5B1220;
    color:#fff;
}


/*==========================================================
ACCORDION
==========================================================*/

.accordion-button:not(.collapsed){
    background:#5B1220;
    color:#fff;
}

.accordion-button:focus{
    box-shadow:none;
}


/*==========================================================
PROGRAMME CARD
==========================================================*/

.programme-card{
    background:white;
    padding:35px;
    border-radius:18px;
    text-align:center;
    transition:.3s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.programme-card:hover{
    transform:translateY(-8px);
}

.programme-card h4{
    color:#5B1220;
    margin-top:20px;
    font-family:'Playfair Display',serif;
}

.programme-card i{
    font-size:42px;
    color:#D4AF37;
}


/*==========================================================
EVENT CARD
==========================================================*/

.event-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.event-card:hover{
    transform:translateY(-8px);
}

.event-card h3{
    color:#5B1220;
    margin:20px 0;
    font-family:'Playfair Display', serif;
}

.event-date{
    display:inline-block;
    background:#D4AF37;
    color:#fff;
    padding:8px 18px;
    border-radius:25px;
    font-weight:600;
}


/*==========================================================
EVENT GALLERY
==========================================================*/

.event-gallery img{
    border-radius:18px;
    transition:.3s;
}

.event-gallery img:hover{
    transform:scale(1.03);
}


/*==========================================================
HERO PANEL
==========================================================*/

.hero-panel{
    background:#ffffff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    color:#222;
    margin:60px 20px;
}

.hero-panel h3{
    color:#5B1220;
    font-family:'Playfair Display', serif;
    margin-bottom:20px;
}

.hero-panel p{
    padding:10px 0;
    border-bottom:1px solid #eee;
    margin-bottom:0;
}

.hero-panel p:last-child{
    border-bottom:none;
}

/* =========================================
   FOUNDING BELIEF TEXT SIZE
========================================= */

.founding-belief .section-label {
    font-size: 2rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.founding-belief h2 {
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: 500;
}

/* =========================================================
   LOGIN PAGE
========================================================= */

.login-section {
    min-height: 100vh;
    padding: 160px 0 100px;
    background:
        linear-gradient(
            135deg,
            #f8f6f1 0%,
            #ffffff 50%,
            #f3eee7 100%
        );
}

.login-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
    border-top: 5px solid #d4af37;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.login-header .section-label {
    display: block;
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 10px;
}

.login-header h1 {
    font-family: 'Playfair Display', serif;
    color: #5b1220;
    font-size: 2.7rem;
    margin-bottom: 12px;
}

.login-header p {
    color: #6b7280;
    line-height: 1.7;
}

.login-card .form-label {
    color: #5b1220;
    font-weight: 600;
}

.input-group-text {
    background: #5b1220;
    color: #d4af37;
    border: 1px solid #5b1220;
}

.login-card .form-control {
    padding: 13px 15px;
    border: 1px solid #ddd;
}

.login-card .form-control:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 0.2rem rgba(212,175,55,.15);
}

.password-toggle {
    border: 1px solid #ddd;
    border-left: none;
    background: white;
    padding: 0 16px;
    color: #5b1220;
}

.password-toggle:hover {
    color: #d4af37;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 18px 0 25px;
    font-size: 14px;
}

.forgot-password {
    color: #5b1220;
    text-decoration: none;
    font-weight: 600;
}

.forgot-password:hover {
    color: #d4af37;
}

.login-submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #d4af37;
    color: #2b0a11;
    font-weight: 700;
    font-size: 16px;
    transition: .3s;
}

.login-submit-btn:hover {
    background: #5b1220;
    color: white;
    transform: translateY(-3px);
}

.login-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.login-footer p {
    margin: 0;
    color: #6b7280;
}

.login-footer a {
    color: #5b1220;
    font-weight: 700;
    text-decoration: none;
}

.login-footer a:hover {
    color: #d4af37;
}

.login-message {
    text-align: center;
}


/* =========================================================
   ACTIVE NAVIGATION
   Only the page currently being viewed should be gold.
========================================================= */

.nav-menu .nav-link {
    color: #ffffff !important;
}

.nav-menu .nav-link:hover {
    color: #d4af37 !important;
}

.nav-menu .nav-link.active {
    color: #d4af37 !important;
    border-bottom: 2px solid #d4af37;
}


/* LOGIN BUTTON ACTIVE STATE */

.nav-login-btn.active {
    color: #d4af37;
}


/* =========================================================
   LOGIN RESPONSIVE
========================================================= */

@media (max-width: 576px) {

    .login-section {
        padding: 130px 15px 70px;
    }

    .login-card {
        padding: 30px 22px;
    }

    .login-header h1 {
        font-size: 2.2rem;
    }

    .login-options {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

}

/* =========================================
   MEMBER / ADMIN NAVIGATION
   Same styling as public navigation
========================================= */

.member-nav {
    background: #5B1220 !important;
}

/* Normal tabs */
.member-nav .navbar-nav .nav-link {
    color: #FFFFFF !important;
    font-weight: 600 !important;
    transition: color 0.3s ease;
}

/* Icons follow tab color */
.member-nav .navbar-nav .nav-link i {
    color: #FFFFFF !important;
    transition: color 0.3s ease;
}

/* Hover */
.member-nav .navbar-nav .nav-link:hover {
    color: #D4AF37 !important;
}

.member-nav .navbar-nav .nav-link:hover i {
    color: #D4AF37 !important;
}

/* Active/current page */
.member-nav .navbar-nav .nav-link.active {
    color: #D4AF37 !important;
}

.member-nav .navbar-nav .nav-link.active i {
    color: #D4AF37 !important;
}

/* Membership type displayed on right */
.member-nav .small {
    color: #D4AF37 !important;
}

/* Logout button */
.member-nav .btn-outline-secondary {
    color: #FFFFFF !important;
    border-color: #FFFFFF !important;
}

.member-nav .btn-outline-secondary:hover {
    background: #FFFFFF !important;
    color: #5B1220 !important;
}

/* Mobile menu button */
.member-nav .navbar-toggler {
    border-color: #FFFFFF !important;
}

.member-nav .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.hero-buttons .nav-apply-btn {
    display: inline-block !important;
    animation: launchTicketAttention 2s ease-in-out infinite !important;
}

@keyframes launchTicketAttention {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 20px 5px rgba(212, 175, 55, 0.45);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* =========================================================
   OUR PURPOSE SECTION
========================================================= */

/* 1. Increase "Our Purpose" */
.purpose-section .section-label {
    font-size: 1.2rem;
}

/* 2. Decrease main heading */
.purpose-section .section-title h2 {
    font-size: 2.2rem;
}

/* 3. Increase paragraph/content text */
.purpose-section .section-title p {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Reduce space above Our Purpose */
.purpose-section {
    padding-top: 5px;
}

/* =========================================================
   SECTION LABELS
   Match "Our Purpose" size
========================================================= */

.purpose-section .section-label,
.founding-belief .section-label,
.difference-section .section-label,
.programme-section .section-label,
.experience-section .section-label {
    font-size: 1.3rem;
}


/* =========================================================
   FOUNDING BELIEF TEXT
   Match the size of the main Founding Belief heading
========================================================= */

.founding-belief p {
    font-size: 1.10rem;
    line-height: 1.8;
}

/* =========================================================
   MATCH ADDITIONAL SECTIONS TO OUR PURPOSE
========================================================= */

/* Section labels */
.purpose-section .section-label,
.founding-belief .section-label,
.difference-section .section-label,
.programme-section .section-label,
.experience-section .section-label,
.membership-section .section-label,
.momentum-section .section-label,
.partner-section .section-label {
    font-size: 1.3rem;
}


/* Section descriptive content */
.membership-section .section-title p,
.momentum-section p,
.partner-section p {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* =========================================================
   ABOUT PAGE SECTION LABELS
   Match "Our Purpose"
========================================================= */

.content-section .section-label {
    font-size: 1.3rem;
}

/* Match public logo size to navigation button */
.nav-logo {
    height: 85px;
    width: 67px;
}

/* =========================================================
   NAVBAR BRAND
   Keep Impact & Legacy unchanged
========================================================= */

.brand-text {
    position: relative;
}

.brand-text small {
    display: block;
    color: #D4AF37;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1;
    margin-top: 3px;

    /* Move Collective toward the centre */
    margin-left: 50px;
}

/* =========================================
   BRAND - IMPACT & LEGACY COLLECTIVE
========================================= */

.brand-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text small {
    display: block;
    color: #D4AF37;
    font-size: 0.55em;
    font-weight: 500;
    line-height: 1;
    margin-top: 3px;
    margin-left: 25px;
}

/* =========================================
   COLLECTIVE BRANDING
========================================= */

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.brand-text small {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #C9A227;
    letter-spacing: 2px;
    margin-top: 3px;
    margin-left: 32px;
}

/* =========================================================
   COLLECTIVE BRANDING - ALL PAGES
========================================================= */

.brand-text {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

/* Impact & Legacy */
.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Collective */
.brand-text small {
    display: block;
    color: #D4AF37;
    font-size: 1.0rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 3px;
    margin-left: 22px;
    line-height: 1;
}

/* White mobile menu icon */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-menu .nav-link {
    display: inline-block;
    position: relative;
    text-decoration: none;
}

.nav-menu .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background-color: #D4AF37;
    transition: width 0.3s ease;
}

.nav-menu .nav-link:hover::after,
.nav-menu .nav-link.active::after {
    width: 100%;
}

/* =========================================
   CONSISTENT APPLY FOR MEMBERSHIP BUTTON
========================================= */

.nav-apply-btn {
    display: inline-block !important;
    background-color: #D4AF37 !important;
    color: #5B1220 !important;

    padding: 8px 18px !important;

    border-radius: 50px !important;

    text-decoration: none !important;
    font-weight: 600;

    white-space: nowrap;

    border: none !important;
    box-shadow: none;

    transition: all 0.3s ease;
}

.nav-apply-btn:hover {
    background-color: #c19b2e !important;
    color: #5B1220 !important;
    transform: translateY(-1px);
}

.custom-navbar .nav-menu a.nav-link[href="contact.html"] {
    color: #ffffff !important;
    text-decoration: none !important;
}

.custom-navbar .nav-menu a.nav-link[href="contact.html"]:hover {
    color: #D4AF37 !important;
}

/*  Templates Section */

/* =========================================================
   WEBSITE COLOR TEMPLATES
   ========================================================= */

/* ---------------------------------------------------------
   TEMPLATE 2
   Light Ivory / Burgundy / Champagne
   --------------------------------------------------------- */

body.template-2 {
    --primary: #6B2333;
    --primary-dark: #4A1723;
    --gold: #C9A227;
    --cream: #F7F2E8;
    --white: #FFFFFF;
    --text: #292525;
    --grey: #6F6A65;
}

body.template-2 .custom-navbar {
    background: var(--primary);
}

body.template-2 .hero-left {
    background: var(--primary);
}

body.template-2 .hero-right {
    background: var(--cream);
}

body.template-2 .programme-section,
body.template-2 .cta-section {
    background: var(--primary);
}

body.template-2 .main-footer {
    background: #351018;
}

body.template-2 .section-title h2,
body.template-2 .info-card h4,
body.template-2 .membership-card h3,
body.template-2 .programme-card h4 {
    color: var(--primary);
}


/* ---------------------------------------------------------
   TEMPLATE 3
   Soft Champagne / Deep Burgundy
   --------------------------------------------------------- */

body.template-3 {
    --primary: #4E1825;
    --primary-dark: #35101A;
    --gold: #D8B45A;
    --cream: #FBF8F2;
    --white: #FFFFFF;
    --text: #292525;
    --grey: #706A66;
}

body.template-3 .custom-navbar {
    background: var(--primary);
}

body.template-3 .hero-left {
    background: var(--primary);
}

body.template-3 .hero-right {
    background: var(--cream);
}

body.template-3 .programme-section,
body.template-3 .cta-section {
    background: var(--primary);
}

body.template-3 .main-footer {
    background: #321019;
}

body.template-3 .section-title h2,
body.template-3 .info-card h4,
body.template-3 .membership-card h3,
body.template-3 .programme-card h4 {
    color: var(--primary);
}

/* =========================================================
   THEME LIGHT
   Premium, warm, contemporary and professional
========================================================= */

body.theme-light {
    background: #F8F6F1;
    color: #222222;
}

/* NAVIGATION */
body.theme-light .custom-navbar {
    background: #5B1220 !important;
}

/* HERO */
body.theme-light .hero-left {
    background: #F8F6F1 !important;
}

body.theme-light .hero-right {
    background: #F8F6F1 !important;
}

body.theme-light .hero h1 {
    color: #5B1220 !important;
}

body.theme-light .hero p {
    color: #5B1220 !important;
}

body.theme-light .hero-tag {
    background: #D4AF37 !important;
    color: #5B1220 !important;
}

/* PURPOSE */
body.theme-light .purpose-section {
    background: #F8F6F1 !important;
}

body.theme-light .difference-section {
    background: #FFFFFF !important;
}

/* FOUNDING BELIEF */
body.theme-light .founding-belief {
    background: #FFFFFF !important;
}

/* KEEP BURGUNDY AS AN ACCENT PANEL */
body.theme-light .belief-panel {
    background: linear-gradient(
        135deg,
        #5B1220,
        #48101A
    ) !important;
}

/* PROGRAMME */
body.theme-light .programme-section {
    background: #F8F6F1 !important;
}

/* MEMBERSHIP */
body.theme-light .membership-section {
    background: #FFFFFF !important;
}

/* MOMENTUM */
body.theme-light .momentum-section {
    background: #F8F6F1 !important;
}

/* PARTNERS */
body.theme-light .partner-section {
    background: #FFFFFF !important;
}

/* CTA */
body.theme-light .cta-section {
    background: #F8F6F1 !important;
    color: #222222 !important;
}

body.theme-light .cta-section h2,
body.theme-light .cta-section p {
    color: #222222 !important;
}

body.theme-light .cta-small {
    color: #5B1220 !important;
}

/* CARDS */
body.theme-light .info-card,
body.theme-light .programme-card,
body.theme-light .membership-card,
body.theme-light .partner-value {
    background: #FFFFFF !important;
}

/* SECTION HEADINGS */
body.theme-light .section-title h2,
body.theme-light .content-section h2 {
    color: #5B1220;
}

/* FOOTER REMAINS DARK */
body.theme-light .main-footer {
    background: #2A0B12 !important;
}
/* =========================================================
   THEME WARM
   Soft Corporate Gold
   E5C158 + Metallic Gold D4AF37
   Warm Ivory + Deep Burgundy Footer
========================================================= */

body.theme-warm {
    background: #F8F6F1;
    color: #222222;
}

/* =========================================================
   NAVIGATION
========================================================= */

body.theme-warm .custom-navbar {
    background: #5B1220 !important;
}

body.theme-warm .nav-menu .nav-link {
    color: #FFFFFF !important;
}

body.theme-warm .nav-menu .nav-link:hover,
body.theme-warm .nav-menu .nav-link.active {
    color: #E5C158 !important;
}

body.theme-warm .nav-login-btn {
    border-color: #E5C158 !important;
    color: #FFFFFF !important;
}

body.theme-warm .nav-login-btn:hover {
    background: #E5C158 !important;
    color: #5B1220 !important;
}

body.theme-warm .nav-apply-btn {
    background: #E5C158 !important;
    color: #5B1220 !important;
}

/* =========================================================
   HERO
========================================================= */

body.theme-warm .hero-left {
    background: #F8F6F1 !important;
}

body.theme-warm .hero-right {
    background: #FFFFFF !important;
}

body.theme-warm .hero h1 {
    color: #5B1220 !important;
}

body.theme-warm .hero p {
    color: #5B1220 !important;
}

body.theme-warm .hero-tag {
    background: #E5C158 !important;
    color: #5B1220 !important;
}

/* =========================================================
   PURPOSE
========================================================= */

body.theme-warm .purpose-section {
    background: #FFFFFF !important;
}

body.theme-warm .purpose-section .section-title h2 {
    color: #5B1220 !important;
}

/* =========================================================
   DIFFERENCE
========================================================= */

body.theme-warm .difference-section {
    background: #F8F6F1 !important;
}

/* =========================================================
   FOUNDING BELIEF
========================================================= */

body.theme-warm .founding-belief {
    background: #FFFFFF !important;
}

body.theme-warm .belief-panel {
    background: linear-gradient(
        135deg,
        #F0D27F,
        #F0D27F
    ) !important;

    color: #5B1220 !important;
}

body.theme-warm .belief-panel span {
    color: #5B1220 !important;
}

body.theme-warm .belief-panel h3 {
    color: #5B1220 !important;
}

/* =========================================================
   PROGRAMME
========================================================= */

body.theme-warm .programme-section {
    background: #F8F6F1 !important;
}

body.theme-warm .programme-section .section-title h2 {
    color: #5B1220 !important;
}

body.theme-warm .programme-section .section-title p {
    color: #6B7280 !important;
}

/* =========================================================
   EXPERIENCE
========================================================= */

body.theme-warm .experience-section {
    background: #FFFFFF !important;
}

/* =========================================================
   MEMBERSHIP
========================================================= */

body.theme-warm .membership-section {
    background: #F8F6F1 !important;
}

body.theme-warm .membership-card.featured {
    border-color: #E5C158 !important;
}

body.theme-warm .featured-badge {
    background: #E5C158 !important;
    color: #5B1220 !important;
}

/* =========================================================
   FOUNDING MOMENTUM
========================================================= */

body.theme-warm .momentum-section {
    background: #FFFFFF !important;
}

body.theme-warm .momentum-card {
    background: linear-gradient(
        135deg,
        #F0D27F,
        #F0D27F
    ) !important;

    color: #5B1220 !important;
}

body.theme-warm .momentum-card i {
    color: #5B1220 !important;
}

/* =========================================================
   PARTNERS
========================================================= */

body.theme-warm .partner-section {
    background: #F8F6F1 !important;
}

/* =========================================================
   CTA
========================================================= */

body.theme-warm .cta-section {
    background: #5B1220 !important;
}

body.theme-warm .cta-section h2,
body.theme-warm .cta-section p {
    color: #FFFFFF !important;
}

body.theme-warm .cta-small {
    color: #E5C158 !important;
}

/* =========================================================
   SECTION HEADINGS
========================================================= */

body.theme-warm .section-title h2,
body.theme-warm .content-section h2 {
    color: #5B1220 !important;
}

/* =========================================================
   SECTION LABELS
========================================================= */

body.theme-warm .section-label {
    background: rgba(229,193,88,.18) !important;
    color: #8A6B16 !important;
}

body.theme-warm .gold-label {
    background: rgba(212,175,55,.18) !important;
    color: #8A6B16 !important;
}

/* =========================================================
   CARDS
========================================================= */

body.theme-warm .info-card,
body.theme-warm .programme-card,
body.theme-warm .membership-card,
body.theme-warm .partner-value {
    background: #FFFFFF !important;
}

/* =========================================================
   ICONS
========================================================= */

body.theme-warm .card-icon {
    background: rgba(229,193,88,.16) !important;
}

body.theme-warm .card-icon i,
body.theme-warm .programme-card i,
body.theme-warm .membership-card li i,
body.theme-warm .partner-value i {
    color: #D4AF37 !important;
}

/* =========================================================
   GOLD BUTTONS
========================================================= */

body.theme-warm .hero-primary-btn,
body.theme-warm .membership-btn,
body.theme-warm .section-btn,
body.theme-warm .cta-primary-btn {
    background: #E5C158 !important;
    color: #5B1220 !important;
}

body.theme-warm .hero-primary-btn:hover,
body.theme-warm .membership-btn:hover,
body.theme-warm .section-btn:hover,
body.theme-warm .cta-primary-btn:hover {
    background: #D4AF37 !important;
    color: #FFFFFF !important;
}

/* =========================================================
   FOOTER
========================================================= */

body.theme-warm .main-footer {
    background: #5B1220 !important;
}

body.theme-warm .main-footer h5 {
    color: #E5C158 !important;
}

/* =========================================================
   SCROLLBAR
========================================================= */

body.theme-warm::-webkit-scrollbar-track {
    background: #F8F6F1;
}

body.theme-warm::-webkit-scrollbar-thumb {
    background: #E5C158;
}

body.theme-warm::-webkit-scrollbar-thumb:hover {
    background: #D4AF37;
}

/* =========================================================
   NAVBAR LAYOUT FIX
   ========================================================= */

.custom-navbar {
    width: 100%;
    overflow: visible;
}

.nav-container {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.navbar-brand {
    flex-shrink: 0;
}

.nav-logo {
    width: 60px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-text {
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 15px !important;
}

.nav-menu .navbar-nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-menu .nav-item {
    margin: 0 3px;
    white-space: nowrap;
}

.nav-menu .nav-link {
    white-space: nowrap;
    padding: 8px 9px;
}

.nav-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.nav-login-btn {
    padding: 9px 14px;
    white-space: nowrap;
}

.nav-apply-btn {
    padding: 9px 16px !important;
    white-space: nowrap;
}

/* =========================================================
   IMPACT & LEGACY COLLECTIVE
   CONSISTENT ACTION BUTTONS
   Pale Gold: #F0D27F
========================================================= */


/* =========================================================
   ALL MAIN ACTION BUTTONS
========================================================= */

.hero-primary-btn,
.hero-secondary-btn,
.membership-btn,
.section-btn,
.nav-apply-btn,
.cta-primary-btn {

    display: inline-block !important;

    background: #F0D27F !important;
    color: #5B1220 !important;

    padding: 14px 30px !important;

    border: none !important;
    border-radius: 50px !important;

    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;

    line-height: 1.4;

    text-align: center;
    text-decoration: none !important;

    white-space: nowrap;

    cursor: pointer;

    box-shadow: none;

    transition:
        background-color .3s ease,
        color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


/* =========================================================
   HOVER EFFECT
========================================================= */

.hero-primary-btn:hover,
.hero-secondary-btn:hover,
.membership-btn:hover,
.section-btn:hover,
.nav-apply-btn:hover,
.cta-primary-btn:hover {

    background: #D4AF37 !important;

    color: #FFFFFF !important;

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(0,0,0,.18);

}


/* =========================================================
   HERO BUTTONS
   HOME
   "GET LAUNCH TICKETS"
========================================================= */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 18px;

    flex-wrap: wrap;

}


.hero-primary-btn,
.hero-secondary-btn {

    min-width: 0;

}


/* =========================================================
   ABOUT TAB
   "OUR STORY"
========================================================= */

.section-btn {

    margin-top: 30px;

}


/* =========================================================
   MEMBERSHIPS TAB
   "APPLY FOR MEMBERSHIP"
========================================================= */

.membership-btn {

    margin-top: 25px;

}


/* =========================================================
   LEADERSHIP LABS
   "BECOME A MEMBER"
========================================================= */

.experience-section .section-btn {

    margin-top: 30px;

}


/* =========================================================
   EVENTS TAB
   "BECOME A MEMBER"
========================================================= */

.event-card .section-btn {

    margin-top: 25px;

}


/* =========================================================
   PARTNERS TAB
   "BECOME A PARTNER"
========================================================= */

.partner-section .section-btn {

    margin-top: 30px;

}


/* =========================================================
   CTA BUTTONS
========================================================= */

.cta-buttons {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 18px;

    flex-wrap: wrap;

}


.cta-primary-btn {

    min-width: 0;

}


/* =========================================================
   NAVIGATION APPLY BUTTON
========================================================= */

.nav-apply-btn {

    padding: 10px 22px !important;

}


/* =========================================================
   MOBILE / SHORT SCREENS
========================================================= */

@media (max-width: 768px) {

    .hero-buttons {

        display: flex;

        flex-direction: row;

        align-items: center;

        justify-content: flex-start;

        gap: 12px;

        flex-wrap: wrap;

    }


    .hero-primary-btn,
    .hero-secondary-btn {

        width: auto !important;

        max-width: 100%;

        display: inline-block !important;

        padding: 13px 24px !important;

        font-size: 14px;

    }


    .section-btn,
    .membership-btn,
    .cta-primary-btn {

        width: auto !important;

        max-width: 100%;

        display: inline-block !important;

        padding: 13px 24px !important;

        font-size: 14px;

    }


    .cta-buttons {

        flex-direction: row;

        justify-content: center;

        flex-wrap: wrap;

    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .hero-buttons {

        flex-direction: row;

        align-items: center;

        justify-content: flex-start;

        gap: 10px;

    }


    .hero-primary-btn,
    .hero-secondary-btn {

        width: auto !important;

        padding: 12px 18px !important;

        font-size: 13px;

    }


    .section-btn,
    .membership-btn,
    .cta-primary-btn {

        width: auto !important;

        padding: 12px 20px !important;

        font-size: 13px;

    }


    .cta-buttons {

        flex-direction: column;

        align-items: center;

    }


    .cta-buttons .cta-primary-btn,
    .cta-buttons .cta-secondary-btn {

        width: auto !important;

    }

}


/* =========================================================
   REMOVE OLD WHITE OUTLINE FROM HERO SECONDARY BUTTON
========================================================= */

.hero-secondary-btn {

    border: none !important;

    background: #F0D27F !important;

    color: #5B1220 !important;

}


/* =========================================================
   CONSISTENT BUTTON FOCUS
========================================================= */

.hero-primary-btn:focus,
.hero-secondary-btn:focus,
.membership-btn:focus,
.section-btn:focus,
.nav-apply-btn:focus,
.cta-primary-btn:focus {

    outline: none;

    box-shadow: 0 0 0 3px rgba(240,210,127,.35);

}
/* =========================================================
   PARTNERS PAGE - CREAM BACKGROUND
   Keep "How We Build Partnerships" consistent
   with the warm cream theme
========================================================= */

body.theme-warm .content-section.bg-light {
    background: #F8F6F1 !important;
}

body.theme-warm .cta-section {
    background: #F8F6F1 !important;
}

body.theme-warm .cta-section h2,
body.theme-warm .cta-section p {
    color: #5B1220 !important;
}

body.theme-warm .cta-small {
    color: #D4AF37 !important;
}

/* =========================================================
   PARTNERS PAGE - FINAL COLOUR & BUTTON STYLE
========================================================= */


/* =========================================================
   HERO BUTTONS
   Become a Partner + Partnership Benefits
========================================================= */

body.theme-warm .hero .hero-primary-btn,
body.theme-warm .hero .hero-secondary-btn {

    display: inline-block;

    background: #F0D27F !important;
    color: #5B1220 !important;

    padding: 14px 30px;

    border-radius: 50px;

    border: none !important;

    text-decoration: none;

    font-weight: 700;

    transition: all 0.3s ease;

}


/* HERO BUTTON HOVER */

body.theme-warm .hero .hero-primary-btn:hover,
body.theme-warm .hero .hero-secondary-btn:hover {

    background: #D4AF37 !important;

    color: #FFFFFF !important;

    border: none !important;

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(91,18,32,.18);

}


/* =========================================================
   PARTNERSHIP SECTION LABELS
   Collaboration + Strategic Partnerships
========================================================= */

body.theme-warm .programme-section .section-label,
body.theme-warm .cta-section .cta-small {

    display: inline-block;

    background: #E8DDBF !important;

    color: #8A6B16 !important;

    padding: 8px 20px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


/* =========================================================
   BOTTOM CTA BUTTONS
   Become A Partner + Learn More
========================================================= */

body.theme-warm .cta-section .cta-primary-btn,
body.theme-warm .cta-section .cta-secondary-btn {

    display: inline-block;

    background: #F0D27F !important;

    color: #5B1220 !important;

    padding: 14px 30px;

    border-radius: 50px;

    border: none !important;

    text-decoration: none;

    font-weight: 700;

    transition: all 0.3s ease;

}


/* CTA BUTTON HOVER */

body.theme-warm .cta-section .cta-primary-btn:hover,
body.theme-warm .cta-section .cta-secondary-btn:hover {

    background: #D4AF37 !important;

    color: #FFFFFF !important;

    border: none !important;

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(91,18,32,.18);

}

/* =========================================================
   HOW WE BUILD PARTNERSHIPS
   GRID STYLE - SIMILAR TO WAYS TO PARTNER
========================================================= */

.partnership-process-section {
    background: #F8F6F1 !important;
}


/* PROCESS CARD */

.partnership-process-card {

    background: #FFFFFF;

    padding: 35px 25px;

    border-radius: 18px;

    text-align: center;

    height: 100%;

    position: relative;

    box-shadow: 0 15px 35px rgba(0,0,0,.08);

    transition: all .3s ease;

}


/* CARD HOVER */

.partnership-process-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(0,0,0,.12);

}


/* ICON */

.partnership-process-card .process-icon {

    width: 70px;

    height: 70px;

    margin: 0 auto 15px;

    border-radius: 50%;

    background: #E8DDBF;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* ICON SYMBOL */

.partnership-process-card .process-icon i {

    font-size: 32px;

    color: #8A6B16;

}


/* NUMBER */

.partnership-process-card .process-number {

    display: inline-block;

    color: #D4AF37;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 8px;

}


/* CARD HEADING */

.partnership-process-card h4 {

    color: #5B1220;

    margin-top: 10px;

    margin-bottom: 15px;

    font-family: 'Playfair Display', serif;

}


/* CARD TEXT */

.partnership-process-card p {

    color: #555;

    margin-bottom: 0;

    line-height: 1.7;

}

body.theme-warm .cta-section .cta-small {
    font-size: 18px;
    padding: 10px 24px;
}



