/* =========================
   ROOT VARIABLES (EASY CLIENT SWAP)
========================= */
:root {
    --primary: #c6a46c;
    --dark: #0b0b0c;
    --soft-dark: #111;
    --text: #ffffff;
    --muted: #b5b5b5;

    --heading-font: 'Playfair Display', serif;
    --body-font: 'Inter', sans-serif;

    --transition: 0.3s ease;
}

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

body {
    background: var(--dark);
    color: var(--text);
    font-family: var(--body-font);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* TYPOGRAPHY */
h1, h2, h3 {
    font-family: var(--heading-font);
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(3rem, 6vw, 6.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

p {
    color: var(--muted);
}

/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
}

.nav-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* HERO */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    width: 90%;
    margin: auto;
    max-width: 700px;
}

.hero small {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero p {
    margin: 20px 0;
}

/* BUTTONS */
.btn {
    padding: 14px 32px;
    border: 1px solid var(--primary);
    text-decoration: none;
    color: white;
    transition: var(--transition);
    display: inline-block;
}

.btn.primary {
    background: var(--primary);
    color: black;
}

.btn:hover {
    background: var(--primary);
    color: black;
}

/* SECTION */
.section {
    padding: 120px 0;
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

/* SPLIT LAYOUT */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* MENU PREMIUM */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

/* TESTIMONIALS */
.testimonials {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

.testimonial {
    background: #151515;
    padding: 30px;
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 60px 0;
    background: #050505;
}

/* ANIMATION */
.hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE */
@media(max-width:768px){
    .split {
        grid-template-columns: 1fr;
    }

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

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