
:root {
    --bg: #0a0908;
    --fg: #f5f1eb;
    --muted: #8a8279;
    --accent: #c9a227;
    --deepred: #8b1e1e;
    --card: #151310;
    --border: #2a2520;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--fg);
    overflow-x: hidden;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

.bg-pattern {
    background-image:
        radial-gradient(ellipse at 20% 30%, rgba(139, 30, 30, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.font-display { font-family: 'Cormorant Garamond', serif; }
.hero-bg {
    background: linear-gradient(135deg, rgba(10,9,8,0.96) 0%, rgba(10,9,8,0.72) 50%, rgba(10,9,8,0.94) 100%),
                url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.text-gold-gradient {
    background: linear-gradient(135deg, #c9a227 0%, #f4d03f 50%, #c9a227 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

.btn-primary {
    background: linear-gradient(135deg, var(--deepred) 0%, #a62828 100%);
    color: var(--fg);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 162, 39, 0.3);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 30, 30, 0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--accent);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid var(--accent);
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: var(--accent);
    color: var(--bg);
    transform: translateY(-2px);
}

.menu-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.menu-item:hover { transform: translateY(-4px); border-color: rgba(201, 162, 39, 0.45); }
.menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}
.menu-item:hover::after { width: 100%; }
.nav-link {
    position: relative;
    color: var(--fg);
    transition: color 0.3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { width: 100%; }
.divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 0 auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: var(--bg);
    z-index: 100;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border);
}
.mobile-menu.active { right: 0; }
.menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.menu-overlay.active { opacity: 1; pointer-events: auto; }

#navbar { background: transparent; }
#navbar.navbar-scrolled {
    backdrop-filter: blur(16px);
    background: rgba(10, 9, 8, 0.88);
    border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}

.tab-btn.active,
.sub-tab-btn.active {
    background: linear-gradient(135deg, rgba(139, 30, 30, 0.9), rgba(166, 40, 40, 0.95));
    color: var(--fg);
    border-color: rgba(201, 162, 39, 0.6);
    box-shadow: 0 12px 30px rgba(139, 30, 30, 0.2);
}
.tab-btn,
.sub-tab-btn {
    color: var(--fg);
    background: rgba(21, 19, 16, 0.6);
}

.info-card {
    padding: 2rem;
    border: 1px solid rgba(201, 162, 39, 0.12);
    background: linear-gradient(180deg, rgba(21, 19, 16, 0.88), rgba(10, 9, 8, 0.65));
    border-radius: 1rem;
    min-height: 220px;
}
.info-label,
.section-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(201, 162, 39, 0.25);
    color: var(--accent);
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background: rgba(201, 162, 39, 0.05);
}

.traditional-shell {
    background: linear-gradient(180deg, rgba(21, 19, 16, 0.86), rgba(10, 9, 8, 0.82));
    border: 1px solid rgba(201, 162, 39, 0.14);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.day-tabs .sub-tab-btn {
    border: 1px solid rgba(201, 162, 39, 0.14);
    border-radius: 999px;
    padding: 0.9rem 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}
.day-tabs .sub-tab-btn:hover {
    border-color: rgba(201, 162, 39, 0.5);
    transform: translateY(-2px);
}
.day-content-card {
    background: linear-gradient(180deg, rgba(13, 12, 11, 0.95), rgba(21, 19, 16, 0.88));
    border: 1px solid rgba(201, 162, 39, 0.12);
    border-radius: 1.5rem;
    padding: 1.5rem;
}
.day-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}
.day-badge-wrap {
    display: flex;
    justify-content: flex-end;
}
.day-dessert-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(201, 162, 39, 0.4);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(139, 30, 30, 0.2));
    color: var(--fg);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.menu-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--fg);
    font-weight: 500;
}
.day-menu-list {
    list-style: none;
    display: grid;
    gap: 0.9rem;
}
.day-menu-list li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1rem 1rem 1.05rem;
    border: 1px solid rgba(201, 162, 39, 0.12);
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(201,162,39,0.04));
}
.day-menu-list li::before {
    content: '•';
    font-size: 1.6rem;
    line-height: 1;
    color: var(--accent);
    margin-top: -0.08rem;
}
.day-menu-list li span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
}
.menu-highlight-card {
    border: 1px solid rgba(201, 162, 39, 0.14);
    border-radius: 1.25rem;
    background: radial-gradient(circle at top right, rgba(201, 162, 39, 0.12), transparent 35%), rgba(255,255,255,0.02);
    padding: 1.25rem;
}
.special-dessert-box {
    border: 1px solid rgba(201, 162, 39, 0.28);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.14), rgba(139, 30, 30, 0.16));
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
}
.special-dessert-box .special-label {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    margin-bottom: 0.45rem;
}
.special-dessert-box .special-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
}
.hidden { display: none !important; }

@media (max-width: 1024px) {
    .hero-bg { background-attachment: scroll; }
}
@media (max-width: 768px) {
    .traditional-shell { padding: 1.2rem; }
    .day-content-card { padding: 1rem; }
    .day-header-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .menu-list-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .day-menu-list li span { font-size: 1.2rem; }
}
