*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#050505;
    font-family:'Montserrat',sans-serif;
    overflow-x:hidden;
}

/* CONTAINER */

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/* HEADER */

.header{
    position:absolute;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    padding:28px 0;
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LOGO */

.logo h1{
    font-family:'Cormorant Garamond',serif;
    color:#d8b36a;
    font-size:58px;
    line-height:1;
    font-weight:700;
    letter-spacing:2px;
}

.logo span{
    color:#f2e2bc;
    font-size:16px;
    letter-spacing:3px;
    text-transform:uppercase;
}

/* NAVBAR */

.navbar{
    display:flex;
    align-items:center;
    gap:35px;
}

.navbar a{
    text-decoration:none;
    color:#fff;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:1px;
    transition:.3s;
}

.navbar a:hover{
    color:#d8b36a;
}

/* BUTTON */

.join-btn{
    background:linear-gradient(135deg,#c89b4d,#f0d18d);
    color:#000 !important;
    padding:15px 28px;
    border-radius:40px;
    font-weight:700;
}

/* HERO */

.hero-section{
    position:relative;
    height:100vh;

    background:
    linear-gradient(rgba(4,7,18,0.72),rgba(4,7,18,0.78)),
    url(img/usasugardaddy.png);

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.25);
}

/* HERO CONTENT */

.hero-content{
    position:relative;
    z-index:2;
}

.sub-heading{
    color:#d8b36a;
    font-size:18px;
    letter-spacing:4px;
    margin-bottom:25px;
}

.hero-content h2{
    color:#fff;
    font-size:92px;
    line-height:1.1;
    font-family:'Cormorant Garamond',serif;
    font-weight:700;
    margin-bottom:25px;
}

.hero-text{
    color:#d4d4d4;
    font-size:20px;
    line-height:1.8;
    max-width:850px;
    margin:auto;
    margin-bottom:45px;
}

/* HERO BUTTONS */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:25px;
}

.hero-buttons a{
    text-decoration:none;
    padding:20px 45px;
    border-radius:50px;
    font-size:16px;
    text-transform:uppercase;
    letter-spacing:1px;
    font-weight:700;
    transition:.4s;
}

.gold-btn{
    background:linear-gradient(135deg,#c89b4d,#f0d18d);
    color:#000;
}

.white-btn{
    background:#fff;
    color:#000;
}

.gold-btn:hover{
    transform:translateY(-4px);
}

.white-btn:hover{
    transform:translateY(-4px);
}

/* SECTION TITLE */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#c89b4d;
    letter-spacing:3px;
    font-size:14px;
}

.section-title h2{
    font-family:'Cormorant Garamond',serif;
    font-size:56px;
    margin-top:15px;
}

.dark-title h2{
    color:#fff;
}

/* FEATURES */

.features-section{
    background:#ffffff;
    padding:120px 0;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.feature-card{
    background:#fff;
    padding:55px 40px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
    transition:.4s;
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#f8f1e5;
    color:#c89b4d;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-bottom:25px;
}

.feature-card h3{
    font-size:28px;
    margin-bottom:15px;
    font-family:'Cormorant Garamond',serif;
}

.feature-card p{
    color:#666;
    line-height:1.9;
}

/* MEMBERS */

.members-section{
    background:#070707;
    padding:120px 0;
}

.members-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.member-card{
    background:#111;
    border-radius:18px;
    overflow:hidden;
    transition:.4s;
}

.member-card:hover{
    transform:translateY(-8px);
}

.member-card img{
    width:100%;
    height:450px;
    object-fit:cover;
}

.member-info{
    padding:25px;
}

.member-info h3{
    color:#fff;
    font-size:30px;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:10px;
}

.member-info p{
    color:#c89b4d;
    letter-spacing:1px;
}

/* FOOTER */

.footer{
    background:#030303;
    padding-top:90px;
    border-top:1px solid rgba(255,255,255,0.08);
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
    padding-bottom:60px;
}

.footer-about h2{
    color:#d8b36a;
    font-family:'Cormorant Garamond',serif;
    font-size:42px;
    margin-bottom:20px;
}

.footer-about p{
    color:#b9b9b9;
    line-height:2;
}

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links h3,
.newsletter h3{
    color:#fff;
    margin-bottom:20px;
    font-size:24px;
    font-family:'Cormorant Garamond',serif;
}

.footer-links a{
    text-decoration:none;
    color:#b9b9b9;
    margin-bottom:14px;
    transition:.3s;
}

.footer-links a:hover{
    color:#d8b36a;
}

.newsletter p{
    color:#b9b9b9;
    margin-bottom:20px;
    line-height:1.8;
}

.newsletter form{
    display:flex;
    flex-direction:column;
}

.newsletter input{
    background:#111;
    border:none;
    padding:18px;
    color:#fff;
    margin-bottom:15px;
    border-radius:8px;
}

.newsletter button{
    background:linear-gradient(135deg,#c89b4d,#f0d18d);
    border:none;
    padding:18px;
    border-radius:8px;
    font-weight:700;
    cursor:pointer;
}

/* COPYRIGHT */

.copyright{
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    color:#999;
    padding:28px 0;
    font-size:14px;
    letter-spacing:1px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .nav-wrapper{
        flex-direction:column;
        gap:25px;
    }

    .navbar{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-content h2{
        font-size:58px;
    }

    .features-grid,
    .members-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

}

@media(max-width:600px){

    .hero-content h2{
        font-size:42px;
    }

    .sub-heading{
        font-size:14px;
        letter-spacing:2px;
    }

    .hero-text{
        font-size:16px;
    }

    .hero-buttons a{
        width:280px;
        text-align:center;
    }

}

/* =========================================
   MOBILE RESPONSIVE DESIGN
========================================= */

/* LARGE TABLETS */

@media(max-width:1200px){

    .hero-content h2{
        font-size:72px;
    }

    .navbar{
        gap:22px;
    }

    .members-grid{
        grid-template-columns:repeat(2,1fr);
    }

}


/* TABLETS */

@media(max-width:991px){

    .header{
        padding:20px 0;
        background:rgba(0,0,0,0.92);
    }

    .nav-wrapper{
        flex-direction:column;
        gap:22px;
    }

    .logo{
        text-align:center;
    }

    .logo h1{
        font-size:46px;
    }

    .logo span{
        font-size:14px;
    }

    .navbar{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .navbar a{
        font-size:14px;
    }

    .join-btn{
        padding:12px 20px;
    }

    .hero-section{
        padding:180px 0 120px;
        height:auto;
        min-height:100vh;
    }

    .hero-content h2{
        font-size:58px;
        line-height:1.15;
    }

    .hero-text{
        font-size:18px;
        padding:0 20px;
    }

    .sub-heading{
        font-size:14px;
        letter-spacing:2px;
        padding:0 20px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .hero-buttons a{
        width:320px;
        text-align:center;
    }

    .features-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .feature-card{
        padding:45px 30px;
    }

    .section-title h2{
        font-size:44px;
    }

    .footer{
        text-align:center;
    }

    .footer-links{
        align-items:center;
    }

}


/* MOBILE DEVICES */

@media(max-width:768px){

    .container{
        width:92%;
    }

    .header{
        padding:18px 0;
    }

    .navbar{
        gap:14px;
    }

    .navbar a{
        font-size:13px;
    }

    .hero-section{
        padding-top:170px;
    }

    .hero-content h2{
        font-size:46px;
    }

    .hero-text{
        font-size:16px;
        line-height:1.8;
    }

    .hero-buttons a{
        width:280px;
        padding:18px 20px;
        font-size:14px;
    }

    .section-title h2{
        font-size:38px;
    }

    .features-section,
    .members-section{
        padding:80px 0;
    }

    .members-grid{
        grid-template-columns:1fr;
    }

    .member-card img{
        height:380px;
    }

    .feature-card h3{
        font-size:24px;
    }

    .footer-grid{
        gap:40px;
    }

}


/* SMALL MOBILE */

@media(max-width:576px){

    .logo h1{
        font-size:38px;
    }

    .logo span{
        font-size:12px;
        letter-spacing:2px;
    }

    .navbar{
        gap:12px;
    }

    .navbar a{
        font-size:12px;
    }

    .join-btn{
        padding:10px 16px;
        font-size:12px !important;
    }

    .hero-section{
        padding-top:160px;
        padding-bottom:80px;
    }

    .sub-heading{
        font-size:12px;
        letter-spacing:1px;
        line-height:1.7;
    }

    .hero-content h2{
        font-size:38px;
        line-height:1.2;
    }

    .hero-text{
        font-size:15px;
    }

    .hero-buttons{
        gap:15px;
    }

    .hero-buttons a{
        width:100%;
        max-width:260px;
        font-size:13px;
        padding:16px 15px;
    }

    .section-title h2{
        font-size:32px;
    }

    .feature-card{
        padding:35px 22px;
    }

    .feature-icon{
        width:70px;
        height:70px;
        font-size:24px;
    }

    .feature-card h3{
        font-size:22px;
    }

    .feature-card p{
        font-size:14px;
    }

    .member-card img{
        height:320px;
    }

    .member-info h3{
        font-size:24px;
    }

    .footer-about h2{
        font-size:34px;
    }

    .footer-about p,
    .newsletter p{
        font-size:14px;
    }

    .newsletter input,
    .newsletter button{
        padding:15px;
    }

    .copyright{
        font-size:12px;
        line-height:1.8;
        padding:20px;
    }

}


/* EXTRA SMALL DEVICES */

@media(max-width:420px){

    .hero-content h2{
        font-size:32px;
    }

    .hero-text{
        font-size:14px;
    }

    .section-title h2{
        font-size:28px;
    }

    .feature-card{
        padding:30px 18px;
    }

    .navbar{
        justify-content:center;
    }

}