:root {
    --section-space: 120px;
    --section-space-mobile: 80px;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;

    --container: 1200px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.about-text,
.cards,
.gallery-grid,
.cta > *{
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
}

body{
    font-family:'Inter', sans-serif;
    background:#111;
    color:white;
}

a, button {
    text-decoration: none;
    cursor: pointer;
}

header{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 8%;
    background:rgba(0,0,0,0.5);
    backdrop-filter:blur(10px);
    z-index:100;
}

.logo, .footer-logo{
    font-family:'Playfair Display', serif;
    font-size:2rem;
    color:#d4af37;
    text-decoration:none;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:25px;
    transition:.3s;
}

nav a:hover{
    color:#d4af37;
}

.menu-toggle{
    display:none;
    width:42px;
    height:42px;
    border:none;
    background:transparent;
    padding:8px;
    cursor:pointer;
    position:relative;
    z-index:200;
}

.menu-toggle span{
    display:block;
    width:100%;
    height:2px;
    background:white;
    margin:7px 0;
    transition:
        transform .3s ease,
        opacity .3s ease;
}

.hero{
    height:100vh;
    background:url("img/hero.png") center/cover;
    display:flex;
    align-items:center;
    position:relative;
}

.overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.48) 45%,
        rgba(0,0,0,0.18) 75%,
        rgba(0,0,0,0.08) 100%
    );
}

html{
    scroll-behavior:smooth;
}

img{
    max-width:100%;
    display:block;
}

.hero-content{
    position:relative;
    z-index:2;
    width:100%;
    max-width:900px;
    padding-left:8%;
    padding-right:40px;
}

.hero h1{
    font-family:'Playfair Display', serif;
    font-size:clamp(2.4rem, 5vw, 4.6rem);
    line-height:1.08;
    max-width:850px;
    margin-bottom:28px;
}

.hero p{
    margin:0;
    max-width:650px;
    line-height:1.7;
    font-size:1.15rem;
    color:#eee;
}

.btn{
    display:inline-block;
    margin-top:32px;
    background:#d4af37;
    color:black;
    text-decoration:none;
    padding:16px 38px;
    border-radius:40px;
    font-weight:600;
    transition:transform .3s ease,
               background .3s ease;
}

.btn:hover{
    transform:translateY(-3px);
    background:#e3bd3d;
}

.about{
    padding:var(--section-space) 8%;
    background:#f4eee6;
    color:#333;
    text-align:center;
}

.about h2{
    font-family:'Playfair Display', serif;
    margin-bottom:24px;
    font-size:2.5rem;
}

.about p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.container{
    width:min(1200px, 84%);
    margin:0 auto;
}

.menu{
    padding:var(--section-space) 8%;
}

.menu h2{
    text-align:center;
    font-size:2.5rem;
    margin-bottom:56px;
    font-family:'Playfair Display', serif;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:#1c1c1c;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.card h3{
    padding:24px 24px 10px;
}

.card p{
    padding:0 24px 28px;
    line-height:1.6;
    color:#ccc;
}

.gallery{
    padding:var(--section-space) 8%;
    background:#181818;
}

.gallery h2{
    text-align:center;
    margin-bottom:56px;
    font-size:2.5rem;
    font-family:'Playfair Display', serif;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:15px;
    transition:.4s;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}

.cta{
    text-align:center;
    padding:var(--section-space) 8%;
}

.cta h2{
    font-family:'Playfair Display', serif;
    font-size:3rem;
    margin-bottom:20px;
}

.cta p{
    color:#ccc;
    margin-bottom:40px;
}

.cta img{
    width:100%;
    max-width:1000px;
    height:450px;
    object-fit:cover;
    border-radius:20px;
    display:block;
    margin:0 auto 40px;
}



footer{
    background:black;
    text-align:center;
    padding:70px 8%;
}

footer h3{
    color:#d4af37;
    margin-bottom:20px;
    font-family:'Playfair Display', serif;
}

footer p{
    margin-bottom:10px;
}

.socials{
    margin-top:20px;
}

.socials a{
    color:white;
    transition:.3s;
}

.socials a:hover{
    color:#d4af37;
}

body.menu-open{
    overflow:hidden;
}

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);

    opacity:0;
    visibility:hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;

    z-index:90;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

#about,
#menu,
#gallery,
#contact{
    scroll-margin-top:100px;
}

/* =========================
   RESPONSIVE
========================= */

/* ---------- TABLET ---------- */
@media (max-width: 1024px){

    header{
        padding:22px 5%;
    }

    .logo{
        font-size:1.8rem;
    }

    nav a{
        margin-left:18px;
        font-size:0.95rem;
    }

    .hero-content{
        max-width:760px;
        padding-left:6%;
        padding-right:6%;
    }

    .hero h1{
        font-size:3.7rem;
        max-width:720px;
    }

    .hero p{
        max-width:600px;
        font-size:1.05rem;
    }

    .about,
    .menu,
    .gallery,
    .cta{
        padding:100px 6%;
    }

    .cards{
        gap:24px;
    }

    .gallery-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:16px;
    }

    .gallery-grid img{
        height:280px;
    }

    .cta img{
        height:400px;
    }
}


/* ---------- MOBILE / LARGE PHONE ---------- */
@media (max-width: 768px){

    header{
        padding:16px 5%;
        background:rgba(10,10,10,.82);
        backdrop-filter:blur(14px);
    }

    .logo{
        font-size:1.6rem;
        position:relative;
        z-index:200;
    }

    .menu-toggle{
        display:block;
    }

    .nav{
        position:fixed;
        top:0;
        right:-100%;

        width:min(80%, 340px);
        height:100vh;
        height:100dvh;

        background:#111;

        display:flex;
        flex-direction:column;
        align-items:flex-start;
        justify-content:center;

        padding:100px 45px 60px;

        transition:right .4s ease;

        z-index:150;
    }

    .nav.active{
        right:0;
    }

    .nav a{
        margin:0 0 28px;
        font-family:'Playfair Display', serif;
        font-size:2rem;
        color:white;
    }

    .nav a:hover{
        color:#d4af37;
    }

.menu-toggle.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

    .overlay{
        background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.78) 0%,
            rgba(0,0,0,0.55) 55%,
            rgba(0,0,0,0.25) 100%
        );
    }

    .hero{
        min-height:100svh;
        height:auto;
        padding-top:74px;
        background-position:58% center;
    }

    .hero-content{
        width:100%;
        max-width:none;
        padding:75px 6% 65px;
    }

    .hero h1{
        font-size:clamp(2.5rem, 10vw, 3.7rem);
        line-height:1.06;
        max-width:600px;
    }

    .hero p{
        max-width:480px;
        font-size:1rem;
        line-height:1.65;
    }

    .btn{
        margin-top:28px;
        padding:14px 30px;
    }

    .about,
    .menu,
    .gallery,
    .cta{
        padding:80px 6%;
    }

    .about h2,
    .menu h2,
    .gallery h2{
        font-size:2.2rem;
    }

    .menu h2,
    .gallery h2{
        margin-bottom:36px;
    }

    .cards{
        grid-template-columns:1fr;
        gap:24px;
    }

    .card img{
        height:320px;
    }

    .gallery-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:12px;
    }

    .gallery-grid img{
        height:220px;
        border-radius:12px;
    }

    .cta h2{
        font-size:2.4rem;
    }

    .cta img{
        height:320px;
        border-radius:16px;
    }

    footer{
        padding:55px 6%;
    }
}

/* ---------- SMALL PHONE ---------- */
@media (max-width: 480px){

    header{
        padding:16px 5%;
    }

    .logo{
        font-size:1.45rem;
    }

    .hero{
        background-position:61% center;
    }

    .hero-content{
        padding-left:5%;
        padding-right:5%;
    }

    .hero h1{
        font-size:clamp(2.35rem, 11vw, 3rem);
    }

    .hero p{
        max-width:330px;
        font-size:0.95rem;
        line-height:1.6;
    }

    .btn{
        padding:13px 26px;
        font-size:0.95rem;
    }

    .about,
    .menu,
    .gallery,
    .cta{
        padding:65px 5%;
    }

    .about h2,
    .menu h2,
    .gallery h2{
        font-size:2rem;
    }

    .about p{
        font-size:0.95rem;
    }

    .card{
        border-radius:16px;
    }

    .card img{
        height:240px;
    }

    .card h3{
        font-size:1.15rem;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        gap:14px;
    }

    .gallery-grid img{
        height:280px;
    }

    .cta h2{
        font-size:2.1rem;
    }

    .cta p{
        font-size:0.95rem;
    }

    .cta img{
        height:260px;
    }

    .cta button{
        width:100%;
        max-width:320px;
    }

    footer{
        padding:45px 5%;
    }
}


