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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    font-size:16px;
    line-height:1.7;
    color:#333;
    background:#ffffff;
    overflow-x:hidden;
}

/* =====================================================
   VARIABLES
===================================================== */

:root{

    --gold:#b9975b;
    --gold-dark:#8d6f3b;

    --dark:#1b1b1b;

    --light:#f7f7f7;

    --white:#ffffff;

    --max-width:1280px;

    --radius:12px;

    --shadow:0 12px 35px rgba(0,0,0,.15);

    --transition:.35s ease;
}

/* =====================================================
   GLOBAL
===================================================== */

.container{
    width:90%;
    max-width:var(--max-width);
    margin:0 auto;
}

section{
    padding:45px 0;
}

img{
    display:block;
    width:100%;
    height:auto;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

h1,
h2,
h3{
    font-family:'Cormorant Garamond',serif;
    font-weight:600;
    color:var(--dark);
}

h1{
    font-size:72px;
    line-height:1.05;
}

h2{
    font-size:48px;
    margin-bottom:20px;
}

h3{
    font-size:28px;
}

p{
    margin-bottom:20px;
    color:#555;
}

.section-tag{
    color:var(--gold);
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.section-title{

text-align:center;

max-width:900px;

margin:0 auto 55px;

}

.section-title h2{

font-size:58px;

margin-bottom:18px;

}

.section-title p{

font-size:22px;

line-height:1.7;

color:#666;

}

.section-title p:last-child{
    margin-bottom:0;
}
/* =====================================================
   HEADER
===================================================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    background:rgba(255,255,255,.96);
    backdrop-filter:blur(10px);

    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.header .container{

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

    padding:18px 0;
}

.logo{

    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    font-weight:600;
    color:var(--dark);
    line-height:1;
}

.logo span{

    display:block;

    margin-top:6px;

    font-family:'Montserrat',sans-serif;
    font-size:11px;

    letter-spacing:4px;
    text-transform:uppercase;

    color:var(--gold);
}

nav ul{

    display:flex;
    align-items:center;
    gap:34px;
}

nav a{

    position:relative;

    font-size:15px;
    font-weight:500;

    transition:var(--transition);
}

nav a:hover{

    color:var(--gold);
}

nav a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;
    height:2px;

    background:var(--gold);

    transition:var(--transition);
}

nav a:hover::after{

    width:100%;
}
/* =====================================================
   HERO
===================================================== */

.hero{

    position:relative;

    height:100vh;
    min-height:760px;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
}

.hero-image{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.35),
        rgba(0,0,0,.55)
    );
}

.hero-content{

    position:relative;

    z-index:2;

    width:90%;
    max-width:1100px;

    text-align:center;

    color:#ffffff;
}

.hero-location{

    color:var(--gold);

    font-size:16px;
    font-weight:600;

    letter-spacing:6px;

    text-transform:uppercase;

    margin-bottom:18px;
}

.hero h1{

    color:#ffffff;

    margin-bottom:10px;

    text-shadow:0 3px 18px rgba(0,0,0,.45);
}

.hero h2{

    color:#ffffff;

    font-family:'Montserrat',sans-serif;

    font-size:26px;
    font-weight:300;

    letter-spacing:5px;

    text-transform:uppercase;

    margin-bottom:30px;
}

.hero-text{

    max-width:760px;

    margin:0 auto 45px;

    color:#ffffff;

    font-size:22px;
    font-weight:300;

    line-height:1.8;

    text-shadow:0 2px 10px rgba(0,0,0,.40);
}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}
/* =====================================================
   BUTTONS
===================================================== */

.btn-gold,
.btn-white{

    display:inline-block;

    padding:16px 38px;

    border-radius:50px;

    font-size:15px;
    font-weight:600;

    letter-spacing:1px;

    transition:var(--transition);

    cursor:pointer;
}

.btn-gold{

    background:var(--gold);

    color:#ffffff;

    border:2px solid var(--gold);
}

.btn-gold:hover{

    background:var(--gold-dark);

    border-color:var(--gold-dark);

    transform:translateY(-3px);

    box-shadow:var(--shadow);
}

.btn-white{

    background:transparent;

    color:#ffffff;

    border:2px solid rgba(255,255,255,.95);
}

.btn-white:hover{

    background:#ffffff;

    color:var(--dark);

    transform:translateY(-3px);

    box-shadow:var(--shadow);
}
/* =====================================================
   OVERVIEW
===================================================== */

.overview{
    background:var(--white);
}

.overview .container{

    display:grid;

    grid-template-columns:1fr;

    gap:70px;

    align-items:center;
}

.overview-image{
    width:100%;
    margin-bottom:50px;
}

.overview-image img{
    width:100%;
    display:block;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.overview-content h2{

    margin-bottom:28px;
}

.overview-content p{

    font-size:17px;

    color:#555;
}

.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:40px;
}

.feature{

    background:#fafafa;

    padding:28px;

    border-radius:var(--radius);

    text-align:center;

    transition:var(--transition);
}

.feature:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow);
}

.feature strong{

    display:block;

    margin-bottom:8px;

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    color:var(--gold);
}

.feature span{

    color:#666;

    font-size:15px;
}
/* =====================================================
   GALLERY
===================================================== */

.gallery{
    background:#f8f8f8;
}

.gallery-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:40px;
    width:100%;
    max-width:none;
}
.gallery-item{
    width:100%;
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    transition:.35s ease;
}

.gallery-item img{
    display:block;
    width:100%;
    height:auto;
    transition:transform .6s ease;
}

.gallery-item:hover{
    transform:translateY(-6px);
    box-shadow:0 30px 70px rgba(0,0,0,.18);
}

.gallery-item:hover img{
    transform:scale(1.02);
}
/* =====================================================
   VIDEO
===================================================== */

.video-section{

    background:var(--white);
}

.video-wrapper{

    max-width:1000px;

    margin:0 auto;

    overflow:hidden;

    border-radius:var(--radius);

    box-shadow:var(--shadow);
}

.video-wrapper video{

    display:block;

    width:100%;

    height:auto;
}
/* =====================================================
   BROCHURE
===================================================== */

.brochure{

    background:var(--gold);

    color:#ffffff;

    text-align:center;
}

.brochure .section-tag,
.brochure h2,
.brochure p{

    color:#ffffff;
}

.brochure .btn-gold{

    margin-top:15px;

    background:#ffffff;

    color:var(--gold);

    border:2px solid #ffffff;
}

.brochure .btn-gold:hover{

    background:transparent;

    color:#ffffff;

    border-color:#ffffff;
}
/* =====================================================
   CONTACT
===================================================== */

.contact{

    background:var(--light);
}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:40px;
}

.contact-grid > div{

    background:#ffffff;

    padding:35px;

    border-radius:var(--radius);

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);
}

.contact-grid > div:hover{

    transform:translateY(-6px);
}

.contact-grid h3{

    color:var(--gold);

    margin-bottom:15px;
}

.contact-grid p{

    margin-bottom:0;
}

.contact-grid a{

    color:var(--gold-dark);

    font-weight:500;
}

.contact-grid a:hover{

    color:var(--gold);
}
/* =====================================================
   FOOTER
===================================================== */

footer{

    background:#111111;

    color:#dddddd;

    text-align:center;

    padding:40px 20px;
}

footer p{

    margin:8px 0;

    color:#dddddd;

    font-size:15px;
}
/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width:992px){

    h1{
        font-size:56px;
    }

    h2{
        font-size:40px;
    }

    .header .container{
        flex-direction:column;
        gap:20px;
        padding:18px 0;
    }

    nav ul{
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .overview .container{
        grid-template-columns:1fr;
    }

    .gallery-grid{
    grid-template-columns:1fr;
}

   

    .contact-grid{
        grid-template-columns:1fr;
    }

}

@media (max-width:768px){

    section{
        padding:70px 0;
    }

    h1{
        font-size:42px;
    }

    h2{
        font-size:34px;
    }

    .hero{
        min-height:100vh;
    }

    .hero h2{
        font-size:18px;
        letter-spacing:2px;
    }

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

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn-gold,
    .btn-white{
        width:280px;
        text-align:center;
    }

    .features{
    grid-template-columns:repeat(4,1fr);
}
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item.large{
        grid-column:span 1;
    }
}

@media (max-width:480px){

    .logo{
        font-size:28px;
    }

    .logo span{
        font-size:10px;
        letter-spacing:2px;
    }

    nav a{
        font-size:14px;
    }

    .hero-location{
        font-size:13px;
        letter-spacing:3px;
    }

    h1{
        font-size:34px;
    }
}
/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp-float{

    position:fixed;

    right:25px;
    bottom:25px;

    z-index:9999;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:14px 24px;

    border-radius:40px;

    background:#25D366;

    color:#ffffff;

    font-family:'Montserrat',sans-serif;
    font-size:15px;
    font-weight:600;

    text-decoration:none;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

    transition:var(--transition);
}

.whatsapp-float:hover{

    transform:translateY(-3px);

    background:#1ebe5d;

    color:#ffffff;

    box-shadow:0 12px 30px rgba(0,0,0,.30);
}

/* =====================================================
   HERO - CTA TRUST LINE
===================================================== */

.hero-trust{
    margin:14px auto 0;
    color:#ffffff;
    font-size:14px;
    font-weight:500;
    line-height:1.5;
    text-align:center;
    text-shadow:0 2px 8px rgba(0,0,0,.85);
}

@media (max-width:768px){
    .hero-trust{
        max-width:300px;
        font-size:13px;
        margin-top:12px;
    }
}

/* =====================================================
   CONTACT CONVERSION BAND
===================================================== */

.contact-band{
    padding:28px 7%;
    background:#ffffff;
}

.contact-band-inner{
    max-width:1180px;
    margin:auto;
    padding:22px 28px;
    border:1px solid rgba(200,161,91,.35);
    border-radius:14px;
    background:#f8f5ef;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
}

.contact-band-text{
    display:flex;
    flex-direction:column;
    gap:5px;
    color:#222;
}

.contact-band-text strong{
    font-family:'Playfair Display',serif;
    font-size:24px;
    color:#1d2d44;
}

.contact-band-text span{
    font-size:15px;
    line-height:1.5;
}

.contact-band-btn{
    flex:0 0 auto;
    display:inline-block;
    padding:14px 22px;
    border-radius:30px;
    background:#c8a15b;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    white-space:nowrap;
    transition:.3s;
}

.contact-band-btn:hover{
    background:#b48d47;
    transform:translateY(-2px);
}

@media (max-width:768px){
    .contact-band{
        padding:20px 6%;
    }

    .contact-band-inner{
        padding:20px;
        flex-direction:column;
        text-align:center;
        gap:16px;
    }

    .contact-band-text strong{
        font-size:21px;
    }

    .contact-band-btn{
        width:100%;
        box-sizing:border-box;
    }
}

