:root {
    --midnight-blue: #0A2342;
    --midnight-blue-light: #1A3A5C;
    --mint: #00FFD4;
    --mint-light: #E0FFF9;
    --white: #FFFFFF;
    --off-white: #F5F7FA;
    --text-dark: #0A2342;
    --text-light: #F5F7FA;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--midnight-blue);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--midnight-blue-light);
    margin-bottom: 48px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--mint);
    color: var(--midnight-blue);
}

.btn-primary:hover {
    background-color: var(--midnight-blue);
    color: var(--mint);
    border-color: var(--mint);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--midnight-blue);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 35, 66, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
}

.logo-accent {
    color: var(--mint);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--mint);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 8px;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 35, 66, 0.7) 0%,
        rgba(10, 35, 66, 0.5) 50%,
        rgba(10, 35, 66, 0.8) 100%
    );
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 24px;
    color: var(--white);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-headline {
    font-size: clamp(2rem, 5vw, 4.5rem);
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-sub {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 96px 0;
}

/* Menu Section */
.menu-section {
    background-color: var(--off-white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.menu-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 35, 66, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(10, 35, 66, 0.15);
}

.menu-card-img {
    height: 200px;
    overflow: hidden;
}

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

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

.menu-card-content {
    padding: 24px;
}

.menu-card-content h3 {
    font-size: 1.5rem;
    color: var(--midnight-blue);
    margin-bottom: 12px;
}

.menu-card-content p {
    color: var(--midnight-blue-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(10, 35, 66, 0.15);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-text {
    font-size: 1.125rem;
    color: var(--midnight-blue-light);
    margin-bottom: 24px;
}

.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--mint);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--midnight-blue-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* Location Section */
.location-section {
    background-color: var(--midnight-blue);
    color: var(--white);
}

.location-section .section-title {
    color: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.location-info h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--mint);
}

.location-info address {
    font-style: normal;
    font-size: 1.125rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--mint);
}

.hours h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--mint);
}

.hours p {
    font-size: 1rem;
    opacity: 0.9;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: #061829;
    padding: 48px 0;
    color: var(--white);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer-brand .logo {
    font-size: 1.75rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--mint);
}

.footer-copy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

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

/* Scroll reveal animations */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.hidden {
    opacity: 0;
    transform: translateY(30px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--midnight-blue);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: var(--font-serif);
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--mint);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .about-container,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-wrapper {
        order: -1;
    }

    .about-stats {
        gap: 32px;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 64px 0;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .about-stats {
        flex-direction: column;
        gap: 24px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .reveal.hidden {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Fallback for no-JS or 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.hidden {
        opacity: 1;
        transform: none;
    }
}
