/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5A1F2A;
    --blush: #E8A0B0;
    --blush-light: #F5D0D8;
    --cream: #F5E6E0;
    --dark: #1A0A0E;
    --dark-mid: #2A1518;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--dark);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

/* Navigation */
.nav {
    background: transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
    background: rgba(26, 10, 14, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232, 160, 176, 0.08);
}

.nav-links {
    gap: 10px;
}

.nav-link {
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--blush);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--cream) !important;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--burgundy);
    color: var(--cream) !important;
    border-radius: 100px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-nav:hover {
    background: transparent;
    border-color: var(--blush);
    color: var(--blush) !important;
}

.btn-nav::after {
    display: none;
}

/* Mobile Menu */
.mobile-menu {
    animation: fadeUp 0.3s ease-out;
}

.mobile-link {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* Hero */
.hero {
    position: relative;
}

.hero-bg {
    will-change: transform;
}

.hero-img {
    transition: transform 8s ease;
}

.hero:hover .hero-img {
    transform: scale(1.03);
}

.hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(26, 10, 14, 0.97) 0%,
        rgba(26, 10, 14, 0.85) 40%,
        rgba(26, 10, 14, 0.5) 70%,
        rgba(26, 10, 14, 0.3) 100%
    );
}

.hero-headline {
    line-height: 1.0;
    letter-spacing: -0.02em;
}

.hero-eyebrow {
    letter-spacing: 0.3em;
}

.hero-subtitle {
    line-height: 1.7;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    background: var(--burgundy);
    color: var(--cream);
    text-decoration: none;
    border-radius: 100px;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s ease;
    border: 1px solid var(--burgundy);
    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.1), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(123, 45, 59, 0.3);
}

.btn-primary-lg {
    padding: 20px 48px;
    font-size: 0.85rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    background: transparent;
    color: var(--cream);
    text-decoration: none;
    border-radius: 100px;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s ease;
    border: 1px solid rgba(245, 230, 224, 0.2);
}

.btn-secondary:hover {
    border-color: var(--blush);
    color: var(--blush);
    transform: translateY(-2px);
}

/* Floating Stat Cards */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    animation: float 6s ease-in-out infinite;
}

.stat-card-1 {
    animation-delay: 0s;
}

.stat-card-2 {
    animation-delay: 2s;
}

.stat-card-3 {
    animation-delay: 4s;
}

.stat-card-inner {
    background: rgba(123, 45, 59, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(232, 160, 176, 0.15);
    border-radius: 20px;
    padding: 28px 32px;
    min-width: 180px;
    transition: all 0.4s ease;
}

.stat-card-inner:hover {
    background: rgba(123, 45, 59, 0.8);
    border-color: rgba(232, 160, 176, 0.3);
    transform: scale(1.05);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blush);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 230, 224, 0.6);
}

/* Scroll Indicator */
.scroll-indicator {
    text-align: center;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--blush), transparent);
    margin: 0 auto;
    animation: scrollLine 2s ease-in-out infinite;
}

.scroll-text {
    letter-spacing: 0.3em;
}

/* Section Eyebrow */
.section-eyebrow {
    letter-spacing: 0.3em;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about {
    background: var(--dark);
}

.about-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-img {
    border-radius: 16px;
    transition: transform 0.6s ease;
}

.about-img-wrapper:hover .about-img {
    transform: scale(1.02);
}

.about-accent {
    border-radius: 20px;
}

/* Drinks Section */
.drinks {
    background: var(--dark);
    position: relative;
}

.drinks-bg {
    pointer-events: none;
}

.menu-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy), var(--blush));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.menu-card:hover::before {
    transform: scaleX(1);
}

.menu-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(232, 160, 176, 0.15);
    transform: translateY(-8px);
}

.menu-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123, 45, 59, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(232, 160, 176, 0.1);
}

/* Food Section */
.food {
    background: var(--dark);
}

.food-gallery {
    position: relative;
}

.food-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.food-img-main img {
    transition: transform 0.6s ease;
}

.food-img-main:hover img {
    transform: scale(1.03);
}

.food-img-small {
    position: absolute;
    bottom: -40px;
    right: -30px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--dark);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.food-img-small img {
    transition: transform 0.6s ease;
}

.food-img-small:hover img {
    transform: scale(1.05);
}

/* Gallery */
.gallery {
    background: var(--dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: 1 / 6;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(2) {
    grid-column: 6 / 9;
    grid-row: 1 / 3;
}

.gallery-item:nth-child(3) {
    grid-column: 9 / 13;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(4) {
    grid-column: 1 / 4;
    grid-row: 2 / 3;
}

.gallery-item:nth-child(5) {
    grid-column: 4 / 9;
    grid-row: 2 / 3;
}

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

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 10, 14, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream);
}

/* Visit Section */
.visit {
    background: var(--dark);
    position: relative;
}

.visit-bg {
    pointer-events: none;
}

.visit-info {
    padding-left: 20px;
    border-left: 2px solid rgba(232, 160, 176, 0.2);
}

.visit-label {
    letter-spacing: 0.2em;
}

.map-container {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

/* Contact Section */
.contact {
    background: var(--dark);
}

.form-group {
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    letter-spacing: 0.15em;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--cream);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: rgba(245, 230, 224, 0.3);
}

.form-input:focus {
    border-color: var(--blush);
    background: rgba(123, 45, 59, 0.1);
    box-shadow: 0 0 0 4px rgba(232, 160, 176, 0.1);
}

.form-input:hover:not(:focus) {
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-success {
    animation: fadeUp 0.6s ease-out;
}

.success-icon {
    animation: fadeUp 0.6s ease-out;
}

/* Footer */
.footer {
    background: var(--dark);
}

.footer-bottom {
    gap: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 5rem;
    }

    .hero-stats {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item {
        grid-column: auto !important;
        grid-row: auto !important;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 3.25rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .section-eyebrow {
        font-size: 0.7rem;
    }

    .about, .drinks, .food, .gallery, .visit, .contact {
        padding: 6rem 1.5rem;
    }

    .font-serif.text-5xl {
        font-size: 2.75rem;
    }

    .font-serif.text-6xl {
        font-size: 3rem;
    }

    .menu-card {
        padding: 28px;
    }

    .food-img-small {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        border-width: 3px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item {
        height: 240px;
    }

    .visit-info {
        padding-left: 16px;
    }

    .btn-primary, .btn-secondary {
        padding: 14px 28px;
        font-size: 0.75rem;
        width: 100%;
        justify-content: center;
    }

    .btn-primary-lg {
        width: 100%;
        justify-content: center;
    }

    .footer {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .font-serif.text-5xl {
        font-size: 2.25rem;
    }

    .font-serif.text-6xl {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-card-inner {
        padding: 20px 24px;
        min-width: 150px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
