:root {
    --gold-primary: #f4c430;
    --gold-light: #fce79a;
    --gold-dark: #c19b22;
    --red-accent: #c92228;
    --dark-bg: #0d0d0f;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #f9f9f9;
    --text-muted: #a0a0a0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--dark-bg);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Animated Glowing Orbs Background */
.bg-orb {
    position: fixed; /* Fixed so they stay in place while scrolling */
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.6;
    animation: float 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 34, 40, 0.4) 0%, rgba(201, 34, 40, 0) 70%);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 196, 48, 0.3) 0%, rgba(244, 196, 48, 0) 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 34, 40, 0.2) 0%, rgba(201, 34, 40, 0) 70%);
    top: 40%;
    left: 40%;
    animation-duration: 25s;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 50px) scale(1.1); }
    100% { transform: translate(-30px, 20px) scale(0.9); }
}

/* Layout */
.main-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    gap: 60px;
}

/* Glassmorphism Container */
.glass-container {
    width: 100%;
    max-width: 900px;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(255,255,255,0.15);
    border-left: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    padding: 3px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

/* Entry Animation */
.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-content {
    background: linear-gradient(145deg, rgba(20,20,22,0.8) 0%, rgba(10,10,12,0.95) 100%);
    border-radius: 21px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Badge */
.badge-wrapper {
    margin-bottom: 30px;
}

.announcement-badge {
    display: inline-block;
    background: rgba(244, 196, 48, 0.1);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid rgba(244, 196, 48, 0.3);
    text-transform: uppercase;
}

/* Typography */
.title-group {
    margin-bottom: 20px;
}

.subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold-primary);
    font-size: 22px;
    margin: 0 0 10px 0;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 80%;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #fff;
    margin: 0 0 15px 0;
}

.header-line {
    width: 60px;
    height: 3px;
    background: var(--gold-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* Menu Section */
.menu-section {
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 10;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.menu-card {
    background: rgba(20, 20, 22, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(244, 196, 48, 0.3);
}

.menu-img-container {
    width: 100%;
    height: 200px;
    background: #1a1a1c;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-img.placeholder {
    width: 50%;
    height: 50%;
    opacity: 0.1;
}

.menu-card:hover .menu-img:not(.placeholder) {
    transform: scale(1.05);
}

.menu-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-name {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.menu-price {
    font-size: 18px;
    color: var(--gold-primary);
    font-weight: 700;
    margin: 0;
}

/* Loading State */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--text-muted);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(244, 196, 48, 0.1);
    border-radius: 50%;
    border-top-color: var(--gold-primary);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Info Grid (Location) */
.info-grid {
    display: grid;
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
}

.info-icon {
    color: var(--gold-primary);
    margin-bottom: 15px;
    background: rgba(244, 196, 48, 0.05);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(244, 196, 48, 0.15);
}

.info-text h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin: 0 0 8px 0;
}

.info-text .highlight {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 5px 0;
}

.info-text .detail {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* CTA Button */
.cta-wrapper {
    display: flex;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    color: var(--dark-bg);
    text-decoration: none;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(244, 196, 48, 0.4);
}

.cta-button:hover::after {
    left: 100%;
}

.map-container {
    width: 100%;
    margin-top: 10px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    color: var(--text-muted);
    font-size: 14px;
    width: 100%;
    z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 42px;
    }
    .description {
        max-width: 100%;
    }
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 480px) {
    .card-content {
        padding: 40px 20px;
    }
    .main-title {
        font-size: 32px;
    }
}