:root {
    --primary-color: #e5c38e; /* Champagne Gold */
    --accent-color: #c94b4b;  /* Deep Rose */
    --bg-dark: #0a0a0a;
    --glass-bg: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(229, 195, 142, 0.15);
    --text-primary: #f5f5f5;
    --text-secondary: #b0b0b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    -ms-overflow-style: none; /* IE y Edge */
    scrollbar-width: none; /* Firefox */
}

*::-webkit-scrollbar {
    display: none; /* Chrome, Safari y Opera */
}

body {
    background: #000;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Luxury Texture */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: 5;
    pointer-events: none;
}

.bokeh-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.bokeh {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(229, 195, 142, 0.1) 0%, rgba(229, 195, 142, 0) 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: float 25s infinite linear;
}

.bokeh:nth-child(1) { top: 10%; left: -10%; animation-duration: 25s; }
.bokeh:nth-child(2) { top: 60%; left: 80%; animation-duration: 30s; animation-delay: -5s; }
.bokeh:nth-child(3) { top: 80%; left: 20%; animation-duration: 35s; animation-delay: -10s; }
.bokeh:nth-child(4) { top: 30%; left: 70%; animation-duration: 22s; animation-delay: -15s; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(10vw, 10vh) scale(1.1); }
    66% { transform: translate(-5vw, 15vh) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes flicker {
    0% { opacity: 0.9; }
    50% { opacity: 0.85; }
    100% { opacity: 0.95; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
}

.header {
    text-align: center;
    margin-bottom: 7rem;
    animation: fadeInDown 1.5s ease-out;
}

.header h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 6.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(229, 195, 142, 0.2);
    margin-bottom: 1rem;
}

.fusion-tag {
    display: inline-block;
    background: transparent;
    padding: 0.5rem 2rem;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--primary-color);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 1.5rem;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.subtitle-es {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    perspective: 1000px;
}

.day-card {
    background: #0d0d0d;
    border: 1px solid rgba(229, 195, 142, 0.2);
    border-radius: 0;
    padding: 4rem 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
    position: relative;
    transition: all 0.5s ease;
}

/* Elegant Corner Ornaments */
.day-card::before, .day-card::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid var(--primary-color);
    pointer-events: none;
    opacity: 0.5;
}

.day-card::before {
    top: 15px;
    left: 15px;
    border-right: 0;
    border-bottom: 0;
}

.day-card::after {
    bottom: 15px;
    right: 15px;
    border-left: 0;
    border-top: 0;
}

.day-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.day-card:hover::before, .day-card:hover::after {
    opacity: 1;
    width: 45px;
    height: 45px;
}

.day-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3.5rem;
    text-align: center;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: relative;
}

.day-title::after {
    content: "✧";
    display: block;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    opacity: 0.7;
}

.meal {
    margin-bottom: 4rem;
    position: relative;
    text-align: center;
}

.meal:last-child {
    margin-bottom: 0;
}

.meal.current-meal {
    background: rgba(229, 195, 142, 0.05);
    padding: 1.5rem;
    border: 1px solid rgba(229, 195, 142, 0.1);
}

.meal.current-meal::before {
    content: "CELEBRANDO 💖";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #000;
    font-size: 0.6rem;
    padding: 4px 12px;
    border-radius: 0;
    font-weight: 700;
    letter-spacing: 2px;
    animation: none;
}

.meal-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.meal-content {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 400;
}

.meal-extra {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 0.3rem;
}

.meal-reveal.hidden {
    display: none;
}

.countdown {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin: 1rem 0;
    padding: 1rem;
    border: 1px dashed var(--glass-border);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.meal-reveal {
    animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.footer {
    text-align: center;
    margin-top: 6rem;
    padding: 2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Floating Petals Effect */
.petal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.petal {
    position: absolute;
    background: #e63946;
    border-radius: 150% 0 150% 0;
    opacity: 0.3;
    pointer-events: none;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-10vh) rotate(0deg);
        opacity: 0.3;
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .header h1 {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .header {
        margin-bottom: 3rem;
    }
    
    .header h1 {
        font-size: 3.5rem;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .container {
        padding: 2rem 1.5rem;
    }

    .menu-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr; /* Force single column on mobile */
    }

    .day-card {
        padding: 2rem;
    }

    .day-title {
        font-size: 2rem;
    }

    .meal-content {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 2.8rem;
    }

    .day-card {
        padding: 1.5rem;
    }

    .day-title {
        font-size: 1.8rem;
    }
}
