/*==============================
        GOOGLE RESET
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

/*==============================
        BODY
==============================*/

body{

    font-family:'Poppins',sans-serif;
    background:#0F172A;
    color:#F8FAFC;

}

/*==============================
        NAVBAR
==============================*/

.navbar{

    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 8%;

}

.logo{

    font-family:'Cormorant Garamond',serif;
    font-size:38px;
    color:#D4AF37;
    font-weight:700;
    letter-spacing:1px;

}

.nav-links{

    display:flex;
    align-items:center;
    gap:40px;

    list-style:none;

}

.nav-links a{

    text-decoration:none;
    color:#F8FAFC;
    font-size:16px;
    font-weight:500;

    position:relative;

    transition:.4s;

}

/* Underline Animation */

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:2px;

    background:#D4AF37;

    transition:.4s;

}

.nav-links a:hover::after,
.nav-links a.active::after{

    width:100%;

}

.nav-links a:hover{

    color:#D4AF37;

}

/* Button */

.btn{

    background:#D4AF37;
    color:#0F172A !important;

    padding:12px 28px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.btn:hover{

    background:#FACC15;
    transform:translateY(-2px);

}

.btn::after{

    display:none;

}

/*==============================
        SCROLLBAR
==============================*/

::-webkit-scrollbar{

    width:12px;

}

::-webkit-scrollbar-track{

    background:#0F172A;

}

::-webkit-scrollbar-thumb{

    background:#D4AF37;
    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:#FACC15;

}


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

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:80px 8%;
    min-height:90vh;
}

/* LEFT SIDE */

.hero-left{
    flex:1;
}

.big-text{
    font-family:'Cormorant Garamond',serif;
    font-size:80px;
    color:#D4AF37;
    line-height:1;
}

.small-text{
    font-size:40px;
    font-weight:600;
    margin-top:10px;
}

.tagline{
    margin-top:20px;
    font-size:18px;
    color:#CBD5E1;
}

.intro-text p{
    margin-top:25px;
    font-size:16px;
    color:#F8FAFC;
}

/* LIST */

.details{
    margin-top:30px;
}

.details p{
    margin-bottom:10px;
    font-size:15px;
    color:#CBD5E1;
}

/* RIGHT SIDE IMAGE */

.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-right img{
    width:420px;
    border-radius:20px;
}
.hero-right{
    background:transparent;
    padding:0;
}

.hero-right img{
    width:330px;
    border-radius:20px;
    box-shadow:none;
    background:transparent;
    display:block;
}

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:60px 8%;
    gap:50px;
}


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

.info-section{
    padding:80px 8%;
    text-align:center;
}

/* Heading */

.center-text h2{
    font-family:'Cormorant Garamond',serif;
    font-size:42px;
    color:#D4AF37;
    margin-bottom:10px;
}

.center-text p{
    color:#CBD5E1;
    font-size:16px;
}

/* Blocks */


.simple-text{
    padding:80px 8%;
    color:#CBD5E1;
    line-height:1.8;
    font-size:16px;
    text-align:left;
}

.simple-text p{
    margin-bottom:25px;
}




.premium-center{
    padding:80px 8%;
    text-align:center;
}

/* GOLD LINE */
.gold-line{
    font-family:'Cormorant Garamond',serif;
    font-size:42px;
    color:#D4AF37;
    margin-bottom:15px;
}

/* WHITE LINE */
.white-line{
    font-size:16px;
    color:#F8FAFC;
    margin-bottom:40px;
}

/* MAIN PARAGRAPH */
.main-text{
    font-size:17px;
    color:#CBD5E1;
    line-height:1.9;
    max-width:900px;
    margin:0 auto;
}



.features-wrap{
    padding:60px 8%;
}

/* top line text */
.top-title{
    text-align:center;
    font-family:'Poppins',sans-serif;
    font-size:22px;
    font-weight:600;
    color:#D4AF37;
    letter-spacing:2px;
    margin-bottom:15px;
    text-transform:uppercase;
    position:relative;
}

/* decorative lines left & right */
.top-title::before,
.top-title::after{
    content:"";
    position:absolute;
    top:50%;
    width:60px;
    height:1px;
    background:rgba(212,175,55,0.6);
}

.top-title::before{
    left:20%;
}

.top-title::after{
    right:20%;
}
/* divider */
.divider{
    height:1px;
    background:rgba(255,255,255,0.15);
    margin:25px 0;
}

/* row */
.features-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

/* feature box */
.feature{
    text-align:center;
    flex:1;
}

/* icon */
.icon{
    font-size:38px;
    color:#D4AF37;
    margin-bottom:10px;
}

/* title (IMPORTANT FIX) */
.title{
    font-size:16px;
    color:#F8FAFC;
    font-weight:600;
}




/* IMAGE SECTION */
.image-section{
    padding:60px 8%;
}

/* 3 images row */
.image-row{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px; /* spacing between images */
}

/* images */
.image-row img{
    width:30%;
    border-radius:15px;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

/* left image slight adjust */
.image-row img:first-child{
    transform:translateX(-10px);
}

/* right image slight adjust */
.image-row img:last-child{
    transform:translateX(10px);
}

/* hover */
.image-row img:hover{
    transform:scale(1.05);
}

/* CTA SECTION */
.cta-section{
    text-align:center;
    padding:80px 8%;
}

/* big heading */
.cta-section h2{
    font-family:'Cormorant Garamond', serif;
    font-size:38px;
    color:#D4AF37;
    line-height:1.3;
    max-width:900px;
    margin:0 auto 20px auto;
}

/* email */
.email{
    font-size:18px;
    color:#F8FAFC;
    letter-spacing:1px;
}





.signup-section{
    padding:80px 8%;
    text-align:center;
}

.signup-section h2{
    font-family:'Cormorant Garamond', serif;
    font-size:38px;
    color:#D4AF37;
    margin-bottom:30px;
}

/* form layout */
.signup-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    max-width:700px;
    margin:0 auto;
}

/* inputs */
.signup-form input{
    padding:14px 16px;
    border:1px solid rgba(255,255,255,0.2);
    background:transparent;
    color:#fff;
    border-radius:8px;
    outline:none;
    transition:0.3s;
}

/* focus effect */
.signup-form input:focus{
    border-color:#D4AF37;
    box-shadow:0 0 10px rgba(212,175,55,0.3);
}

/* button full width */
.signup-form button{
    grid-column:span 2;
    padding:14px;
    background:#D4AF37;
    border:none;
    color:#0F172A;
    font-weight:600;
    font-size:16px;
    border-radius:8px;
    cursor:pointer;   /* hand cursor */
    transition:0.3s;
}

/* hover button */
.signup-form button:hover{
    background:#FACC15;
    transform:translateY(-2px);
}
.divider{
    height:1px;
    background:rgba(255,255,255,0.15);
    margin:15px 0;
}




.footer{
    padding:70px 8%;
    text-align:center;
    background:#0B1220;
    margin-top:80px;
}

/* SOCIAL ICONS */
.social-icons{
    margin-bottom:25px;
}

.social-icons a{
    color:#CBD5E1;
    margin:0 12px;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.social-icons a:hover{
    color:#D4AF37;
}

/* LINKS */
.footer-links{
    margin-bottom:25px;
}

.footer-links a{
    color:#CBD5E1;
    margin:0 10px;
    font-size:13px;
    text-decoration:none;
}

.footer-links a:hover{
    color:#F8FAFC;
}

/* TITLE */
.footer-title{
    font-family:'Cormorant Garamond', serif;
    font-size:26px;
    color:#D4AF37;
    margin-bottom:20px;
}

/* BOTTOM TEXT */
.footer-bottom{
    font-size:12px;
    color:#94A3B8;
    letter-spacing:1px;
}



/* footer */
.footer{
    padding:70px 8%;
    text-align:center;
    background:#0B1220;
}

/* icons row */
.social-icons{
    margin-bottom:25px;
}

.social-icons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:45px;
    height:45px;
    margin:0 8px;
    border-radius:50%;
    background:rgba(255,255,255,0.05);
    color:#CBD5E1;
    font-size:18px;
    text-decoration:none;
    cursor:pointer; /* hand cursor */
    transition:0.3s;
}

/* hover effect */
.social-icons a:hover{
    background:#D4AF37;
    color:#0B1220;
    transform:translateY(-3px);
}






/*==============================
        Meet Debbie Page
==============================*/

/*==========================
      Meet Debbie
==========================*/

.meet-page{

    background:#0B1F3A;
    padding:100px 8%;

}

.meet-container{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;

}

.meet-content{

    width:55%;

}

.meet-tag{

    color:#D4AF37;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:15px;
    font-weight:600;

}

.meet-content h1{

    color:#fff;
    font-size:54px;
    margin:15px 0 25px;

}

.meet-content p{

    color:#D9E2EC;
    line-height:2;
    font-size:17px;
    margin-bottom:18px;

}

.signature-box{

    margin-top:40px;

}

.thanks{

    color:#D4AF37;
    margin-bottom:5px;

}

.signature{

    font-family:'Great Vibes', cursive;
    color:#D4AF37;
    font-size:58px;
    font-weight:normal;

}

.meet-image{

    width:40%;
    text-align:center;

}

.meet-image img{

    width:100%;
    max-width:430px;
    border-radius:20px;
    border:5px solid #D4AF37;
    box-shadow:0 20px 45px rgba(0,0,0,.45);

}






footer{
    clear: both;
    position: relative;
    z-index: 1;
}

.meet-page,
.hero,
.premium-center,
.image-section,
.cta-section{
    background: transparent;
}





.news-section{
    padding:80px 8%;
    background:#0F172A;
}

.news-title{
    text-align:center;
    font-size:42px;
    color:#D4AF37;
    font-family:'Cormorant Garamond', serif;
    margin-bottom:60px;
}

/* CARD */
.news-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;

    margin-bottom:60px;
    padding:30px;

    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;

    transition:0.4s;
    background:rgba(255,255,255,0.02);
}

/* hover effect */
.news-card:hover{
    transform:translateY(-8px);
    border-color:#D4AF37;
    box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

/* TEXT */
.news-text{
    flex:1;
}

.news-text h3{
    font-size:24px;
    color:#F8FAFC;
    margin-bottom:10px;
}

.news-text p{
    color:#CBD5E1;
    margin-bottom:12px;
    line-height:1.7;
}

/* divider line */
.news-divider{
    width:80px;
    height:2px;
    background:#D4AF37;
    margin:10px 0;
}

/* IMAGE */
.news-img{
    flex:1;
    text-align:center;
}

.news-img img{
    width:100%;
    max-width:320px;
    height: 410px;
    border-radius:15px;
}

/* BUTTON */
.read-btn{
    margin-top:10px;
    padding:10px 20px;
    background:#D4AF37;
    border:none;
    cursor:pointer;
    font-weight:600;
    border-radius:25px;
    transition:0.3s;
}

.read-btn:hover{
    background:#FACC15;
    transform:translateY(-2px);
}




.get-involved-section{
    padding:100px 8%;
    background:#0F172A;
    display:flex;
    justify-content:center;
}

/* CARD */
.get-involved-box{
    max-width:800px;
    width:100%;
    text-align:center;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    padding:50px;
    border-radius:18px;
}

/* TITLE */
.gi-title{
    font-size:42px;
    font-family:'Cormorant Garamond', serif;
    color:#D4AF37;
    margin-bottom:10px;
}

/* SUBTITLE */
.gi-subtitle{
    font-size:16px;
    color:#CBD5E1;
    line-height:1.8;
    margin-bottom:20px;
}

/* FORM */
.gi-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-top:30px;
}

/* INPUTS */
.gi-form input{
    padding:12px 14px;
    border-radius:8px;
    border:1px solid rgba(255,255,255,0.2);
    background:transparent;
    color:#fff;
    outline:none;
}

/* CHECKBOX */
.gi-form label{
    grid-column:span 2;
    text-align:left;
    color:#CBD5E1;
    font-size:14px;
}

/* BUTTON */
.gi-btn{
    grid-column:span 2;
    padding:14px;
    background:#D4AF37;
    border:none;
    border-radius:8px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.gi-btn:hover{
    background:#FACC15;
   
}






.contribute-section{
    padding:100px 8%;
    background:#0F172A;
    display:flex;
    justify-content:center;
}

/* CARD */
.contribute-box{
    max-width:900px;
    width:100%;
    text-align:center;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    padding:50px;
    border-radius:18px;
}

/* TITLE */
.contribute-title{
    font-size:42px;
    font-family:'Cormorant Garamond', serif;
    color:#D4AF37;
    margin-bottom:10px;
}

/* SUBTITLE */
.contribute-subtitle{
    font-size:16px;
    color:#CBD5E1;
    margin-bottom:20px;
}

/* TEXT */
.contribute-text{
    font-size:15px;
    color:#F8FAFC;
    line-height:1.8;
    margin-bottom:15px;
}

/* AMOUNT TITLE */
.amount-title{
    margin-top:30px;
    font-size:20px;
    color:#D4AF37;
}

/* GRID */
.amount-grid{
    margin-top:20px;
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:15px;
}

/* BUTTONS */
.amount-grid button{
    padding:12px;
    border-radius:8px;
    border:1px solid rgba(255,255,255,0.2);
    background:transparent;
    color:#fff;
    cursor:pointer;
    transition:0.3s;
}

/* HOVER */
.amount-grid button:hover{
    background:#D4AF37;
    color:#0F172A;
    transform:translateY(-3px);
}







.footer-cards{
    display:flex;
    justify-content:center;
    gap:20px;
    margin:30px 0;
    flex-wrap:wrap;
}

.footer-card{
    padding:14px 20px;
    border:1px solid rgba(255,255,255,0.2);
    border-radius:10px;
    color:#F8FAFC;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
    cursor:pointer;
}

/* hover premium */
.footer-card:hover{
    background:#D4AF37;
    color:#0F172A;
    transform:translateY(-3px);
}





.policy-section{
    padding:100px 8%;
    background:#0F172A;
    display:flex;
    justify-content:center;
}

.policy-box{
    max-width:900px;
    text-align:center;
    background:rgba(255,255,255,0.03);
    padding:50px;
    border-radius:15px;
    border:1px solid rgba(255,255,255,0.08);
}

.policy-title{
    font-size:40px;
    color:#D4AF37;
    font-family:'Cormorant Garamond', serif;
}

.policy-box p{
    color:#F8FAFC;
    line-height:1.9;
    margin-bottom:15px;
}




.gi-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    max-width:750px;
    margin:0 auto;
    text-align:center;
}

/* INPUTS */
.gi-form input,
.gi-form textarea{
    width:100%;
    padding:14px 16px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,0.2);
    background:transparent;
    color:#fff;
    outline:none;
    font-size:14px;
    transition:0.3s;
}

/* FOCUS EFFECT */
.gi-form input:focus,
.gi-form textarea:focus{
    border-color:#D4AF37;
    box-shadow:0 0 10px rgba(212,175,55,0.3);
}

/* MESSAGE BOX (THIS WAS MISSING MAIN FIX) */
.gi-form textarea{
    grid-column:span 2;
    min-height:140px;
    resize:none;
}

/* SUBMIT BUTTON */
.gi-btn{
    grid-column:span 2;
    padding:14px;
    background:#D4AF37;
    border:none;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
    color:#0F172A;
}

.gi-btn:hover{
    background:#FACC15;
    transform:translateY(-2px);
}






/* checkbox row */
.check-item{
    grid-column:span 2;
    display:flex;
    align-items:center;
    gap:12px;
    padding:8px 0;
    text-align:left;
}

/* checkbox itself */
.check-item input[type="checkbox"]{
    width:18px;
    height:18px;
    accent-color:#D4AF37;
    cursor:pointer;
}

/* text */
.check-item span{
    color:#CBD5E1;
    font-size:14px;
    line-height:1.5;
}

/* hover effect (optional premium feel) */
.check-item:hover span{
    color:#F8FAFC;
}

.news-img iframe{
    width:100%;
    max-width:600px;
    height:340px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.4);
}
.gold-word{
    color:#D4AF37;
}

.intro-text p{
    margin-bottom:10px;
    color:#CBD5E1;
    font-size:15px;
}

.center-text{
    text-align:center !important;
}

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:80px 8%;
    gap:50px;
}

/* LEFT FIX */
.hero-left{
    flex:1;
    text-align:left !important;
}

/* RIGHT IMAGE */
.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-right img{
    width:380px;
    border-radius:20px;
}

/* golden word */
.gold-word{
    color:#D4AF37;
}

.logo{
    font-family:'Cormorant Garamond', serif;
    font-size:38px;
    font-weight:700;
    color:#D4AF37;
    letter-spacing:1px;
    cursor:pointer;
    position:relative;
    transition:0.3s ease;
}

/* STATIC PREMIUM GLOW (NO MOVEMENT) */
.logo:hover{
    color:#FACC15;
    text-shadow:
        0 0 6px rgba(212,175,55,0.9),
        0 0 12px rgba(212,175,55,0.7),
        0 0 18px rgba(250,204,21,0.5);
    transform:scale(1.03);
}

/* CLICK EFFECT (SMOOTH, NO SHIFT) */
.logo:active{
    transform:scale(0.98);
    text-shadow:
        0 0 8px rgba(212,175,55,1);
}