/* Wix Clone Rebranded Stylesheet - Food Station Coming Soon */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Sora:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #C41E3A;          /* Crimson Red */
    --primary-rgb: 196, 30, 58;
    --gold: #D4AF37;             /* Gold */
    --gold-rgb: 212, 175, 55;
    --dark: #0A0A0A;             /* Very Dark Grey/Black */
    --dark-light: #121212;
    --text-primary: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.6);
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-logo: 'Sora', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar */
body::-webkit-scrollbar {
    width: 6px;
}
body::-webkit-scrollbar-track {
    background: var(--dark);
}
body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

/* Background Gradients & Overlay */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    overflow: hidden;
    pointer-events: none;
}

.bg-blur-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(var(--primary-rgb), 0.15) 0%, transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(var(--gold-rgb), 0.1) 0%, transparent 60%);
    z-index: -2;
}

.bg-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -3;
    opacity: 0.5;
}

/* Floating Abstract Shapes (Clouds & Airplane equivalent in Gold/Crimson) */
.floating-elements {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.floating-cloud {
    position: absolute;
    background: radial-gradient(circle, rgba(var(--gold-rgb), 0.08) 0%, rgba(var(--primary-rgb), 0.03) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: float-slow 15s infinite ease-in-out alternate;
}

.cloud-1 { width: 350px; height: 350px; top: 15%; left: 10%; }
.cloud-2 { width: 450px; height: 450px; bottom: 10%; right: 5%; animation-delay: -5s; }
.cloud-3 { width: 250px; height: 250px; top: 50%; left: 60%; animation-delay: -10s; }

/* The central glowing culinary mascot (Floating Plate/Cloche equivalent to paper airplane) */
.glowing-centerpiece {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.45;
    animation: bounce-float 8s infinite ease-in-out;
}

/* Global Navigation Header (Fixed like Wix, but without Wix elements) */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    font-family: var(--font-logo);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: white;
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.4);
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.logo-text span {
    color: var(--gold);
}

.header-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.header-link:hover {
    background-color: var(--text-primary);
    color: var(--dark);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

/* Scroll Snap Sections */
.scroll-section {
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

/* Section 1: Hero & Countdown */
.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: fade-in-up-wix 1s ease-out 0.2s forwards;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 12px;
    text-indent: 12px; /* Center-align compensation for letter spacing */
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--text-primary);
    opacity: 0;
    animation: fade-in-up-wix 1s ease-out 0.4s forwards;
}

@media (min-width: 576px) {
    .hero-title {
        font-size: 6rem;
        letter-spacing: 18px;
        text-indent: 18px;
    }
}
@media (min-width: 992px) {
    .hero-title {
        font-size: 7.5rem;
        letter-spacing: 24px;
        text-indent: 24px;
    }
}

/* Wix Styled Countdown */
.countdown-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fade-in-up-wix 1s ease-out 0.6s forwards;
}

@media (min-width: 576px) {
    .countdown-row {
        gap: 3.5rem;
    }
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

@media (min-width: 576px) {
    .countdown-item {
        min-width: 90px;
    }
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 200;
    letter-spacing: 1px;
    color: var(--text-primary);
}

@media (min-width: 576px) {
    .countdown-value {
        font-size: 4.5rem;
    }
}

.countdown-label {
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: color 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.scroll-indicator:hover {
    color: var(--text-primary);
}

.scroll-indicator i {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    animation: bounce-subtle 2s infinite;
}

/* Section 2: Story & Form */
.section-container {
    max-width: 720px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.8rem;
    letter-spacing: 0.5px;
}

@media (min-width: 576px) {
    .section-title {
        font-size: 3.2rem;
    }
}

.section-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    font-weight: 300;
}

.form-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

/* Wix Centered Subscribe Form */
.wix-subscribe-form {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 5rem;
}

@media (min-width: 576px) {
    .wix-subscribe-form {
        flex-direction: row;
        gap: 0;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 40px;
        padding: 0.25rem;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    
    .wix-subscribe-form:focus-within {
        border-color: var(--gold);
        box-shadow: 0 0 15px rgba(var(--gold-rgb), 0.2);
    }
}

.wix-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    padding: 1rem 1.6rem;
    color: white;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

@media (min-width: 576px) {
    .wix-input {
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0.85rem 1.4rem;
    }
}

.wix-btn {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 40px;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.wix-btn:hover {
    background-color: #D93651;
    transform: scale(1.02);
}

@media (min-width: 576px) {
    .wix-btn {
        padding: 0.85rem 1.8rem;
    }
}

.form-message {
    font-size: 0.85rem;
    min-height: 20px;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    color: #4BB543;
}

.form-message.error {
    color: #FF3333;
}

/* Footer Section */
.footer-row {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 2rem;
}

@media (min-width: 768px) {
    .footer-row {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }
}

.footer-contact {
    font-size: 0.85rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact:hover {
    color: var(--gold);
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
}

.social-link {
    color: var(--text-muted);
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes float-slow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(30px, 40px) scale(1.08);
    }
}

@keyframes bounce-float {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-15px) rotate(5deg);
    }
}

@keyframes bounce-subtle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes fade-in-up-wix {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Animations */
.svg-steam {
    fill: none;
    stroke: url(#goldGradient);
    stroke-width: 1.5;
    stroke-linecap: round;
    opacity: 0.3;
    animation: draw-steam 6s infinite linear;
}

@keyframes draw-steam {
    0% {
        stroke-dasharray: 0 100;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 50 50;
        stroke-dashoffset: -20;
        opacity: 0.5;
    }
    100% {
        stroke-dasharray: 0 100;
        stroke-dashoffset: -100;
        opacity: 0;
    }
}
