:root {
    --bg-color: #0a0a0a;
    --accent: #d4af37; /* Gold */
    --text-white: #ffffff;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-white);
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* HEADER GRID: Logo Middle, Socials Right */
header { padding: 30px 0; background: #111; border-bottom: 1px solid #222; }
.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Centers the middle item perfectly */
    align-items: center;
}

.logo {
    font-family: 'Alex Brush', cursive;
    font-size: 65px; /* Bigger */
    color: var(--accent);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.socials { text-align: right; }
.socials a { color: #888; margin-left: 20px; font-size: 22px; transition: 0.3s; }
.socials a:hover { color: var(--accent); transform: translateY(-3px); }

/* Navigation Tabs */
.main-tabs { display: flex; justify-content: center; gap: 40px; margin-top: 20px; }
.tab-btn { background: none; border: none; color: #666; font-weight: 600; cursor: pointer; padding: 10px 20px; font-size: 14px; letter-spacing: 2px; }
.tab-btn.active { color: var(--accent); border-bottom: 2px solid var(--accent); }

/* SLIDESHOW TRIPTYCH */
.hero-slideshow { height: 600px; position: relative; overflow: hidden; margin-top: 20px; }
.triptych-display { display: flex; justify-content: center; align-items: center; gap: 0; height: 100%; }

.main-frame { width: 50%; height: 500px; z-index: 2; border: 1px solid var(--accent); position: relative; }
.side-frame { width: 25%; height: 400px; opacity: 0.3; filter: blur(2px); z-index: 1; transition: 0.8s ease; }
.triptych-display img { width: 100%; height: 100%; object-fit: cover; }

/* Slide Info Overlay */
.slide-info-overlay {
    position: absolute;
    bottom: 80px;
    left: 28%;
    z-index: 10;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.9);
}
#slide-title { font-family: 'Playfair Display', serif; font-size: 48px; margin: 0; }
.stars { color: var(--accent); font-size: 20px; margin: 10px 0; }
.ingredients-list { font-size: 13px; color: #ccc; letter-spacing: 1px; text-transform: uppercase; }

/* ... [Include previous tab and modal CSS here] ... */