:root {
    --gold: #c5a059;
    --dark: #1a1a1a;
    --bg: #fdfaf6;
    --accent: #eee0c9;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: var(--bg);
    color: var(--dark);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container { width: 90%; max-width: 1100px; margin: auto; }
.section { padding: 60px 0; text-align: center; }
.bg-light { background-color: var(--accent); }

/* Hero Section */
.hero {
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 8vw, 5rem); margin: 0; }

nav {
    position: absolute;
    top: 0; width: 100%; padding: 20px;
    display: flex; justify-content: space-around;
}
nav ul { display: flex; list-style: none; padding: 0; }
nav ul li a { color: white; text-decoration: none; margin: 0 15px; font-weight: 600; }

/* 3D Centered Book */
.menu-container {
    display: flex;
    justify-content: center;
    perspective: 2000px;
    margin: 40px auto;
}

.book {
    width: 450px;
    height: 650px;
    position: relative;
}

.page {
    position: absolute;
    width: 100%; height: 100%;
    background: white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    transition: 0.4s ease;
    z-index: 1;
    pointer-events: none;
    left: 0;
}

.page.active { opacity: 1; z-index: 2; pointer-events: all; }

.page-content {
    padding: 40px; height: 100%;
    box-sizing: border-box;
    overflow-y: auto; text-align: left;
}

.page-content h3 { font-family: 'Playfair Display', serif; border-bottom: 2px solid var(--gold); padding-bottom: 10px; }
.sub-cat { color: var(--gold); font-size: 0.85rem; text-transform: uppercase; margin-top: 25px; }
.menu-item { display: flex; justify-content: space-between; font-weight: 600; margin-top: 15px; border-bottom: 1px dotted #ccc; }
.desc { font-size: 0.8rem; color: #777; margin: 5px 0; }

/* Controls */
.menu-controls { display: flex; justify-content: center; align-items: center; gap: 30px; margin-top: 20px; }
.nav-btn { background: var(--dark); color: white; border: none; padding: 12px 25px; cursor: pointer; border-radius: 4px; font-weight: bold; }
.nav-btn:hover { background: var(--gold); }

/* Gallery */
.insta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin: 40px 0; }
.card img { width: 100%; height: 350px; object-fit: cover; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* Footer */
footer { background: var(--dark); color: white; padding: 50px 0; }
.footer-grid { display: flex; justify-content: space-around; flex-wrap: wrap; text-align: center; }
.footer-box h4 { color: var(--gold); font-family: 'Playfair Display', serif; }
.btn-alt {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-alt:hover {
    background-color: var(--gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}