/* ===== CUSTOM PROPERTIES ===== */
:root {
    --navy: #1B2A4A;
    --navy-dark: #131f37;
    --terracotta: #D4784A;
    --terracotta-hover: #c06838;
    --cream: #FAF8F5;
    --charcoal: #2C2C2C;
    --charcoal-light: #555;
    --white: #ffffff;
    --glass: rgba(27, 42, 74, 0.85);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    --radius: 8px;
    --radius-lg: 16px;

    --transition: 0.3s ease;
    --transition-slow: 0.6s ease;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xl) 0;
}

.section-light {
    background: var(--cream);
}

.section-dark {
    background: var(--navy);
}

.section-accent {
    background: var(--navy-dark);
}

.section-booking {
    background: var(--navy);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-sm);
    color: var(--charcoal);
}

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

.section-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto var(--space-lg);
    color: var(--charcoal-light);
    font-size: clamp(1rem, 2vw, 1.125rem);
}

.section-intro-light {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    width: 130px;
    height: auto;
    color: var(--white);
    transition: color var(--transition);
}

.nav-season-badge {
    display: none;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-season-badge.open {
    display: inline-block;
    background: #22c55e;
    color: var(--white);
}

.nav-season-badge.closed {
    display: inline-block;
    background: var(--terracotta);
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-links a {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: opacity var(--transition);
    white-space: nowrap;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-cta {
    background: var(--terracotta);
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    transition: background var(--transition), opacity var(--transition) !important;
}

.nav-cta:hover {
    background: var(--terracotta-hover);
    opacity: 1 !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(27, 42, 74, 0.4) 0%,
        rgba(27, 42, 74, 0.45) 30%,
        rgba(27, 42, 74, 0.5) 50%,
        rgba(27, 42, 74, 0.6) 70%,
        rgba(27, 42, 74, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: var(--space-md);
}

.hero-logo {
    width: min(320px, 70vw);
    height: auto;
    margin: 0 auto var(--space-sm);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: var(--space-xs);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-season-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.hero-season-badge.open {
    background: #22c55e;
    color: var(--white);
}

.hero-season-badge.closed {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 2.25rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--terracotta-hover);
}

/* ===== ABOUT HERO ===== */
.about-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.about-hero img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center 62%;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.about-hero .section-intro {
    margin-bottom: 0;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-md);
}

.feature-card {
    text-align: center;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-sm);
    color: var(--terracotta);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    margin-bottom: var(--space-xs);
    color: var(--navy);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
    display: grid;
    gap: var(--space-sm);
}

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

.gallery-view .gallery-item-wide {
    grid-column: 1 / -1;
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-sm);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== FOOD & DRINK ===== */
.food-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
    margin-bottom: var(--space-lg);
}

.food-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.food-image img {
    width: 100%;
    height: auto;
}

.food-text h3 {
    color: var(--navy);
    margin-bottom: var(--space-sm);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.food-text p {
    color: var(--charcoal-light);
    margin-bottom: var(--space-sm);
}

.food-highlights {
    margin: var(--space-sm) 0;
    padding-left: 0;
}

.food-highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.food-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--terracotta);
}

.food-note {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--charcoal-light);
    margin-top: var(--space-sm);
}

.drinks-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.drinks-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
}

.drinks-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== INFO GRID ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.info-card {
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.info-card h3 {
    color: var(--navy);
    margin-bottom: var(--space-xs);
}

.info-highlight {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--terracotta);
    margin-bottom: var(--space-xs);
}

.info-card p {
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

.info-list {
    padding: 0;
}

.info-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

.info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terracotta);
}

.entrance-section {
    text-align: center;
}

.entrance-section img {
    border-radius: var(--radius-lg);
    margin: 0 auto var(--space-sm);
    max-width: 500px;
}

.entrance-caption {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    font-style: italic;
}

/* ===== BOOKING ===== */
.booking-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

.booking-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    color: var(--white);
    transition: background var(--transition), transform var(--transition);
}

.booking-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.booking-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-sm);
    color: var(--terracotta);
}

.booking-icon svg {
    width: 100%;
    height: 100%;
}

.booking-card h3 {
    margin-bottom: 0.25rem;
}

.booking-card p {
    font-size: 0.85rem;
    opacity: 0.8;
}

.booking-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.booking-form-wrapper h3 {
    color: var(--white);
    text-align: center;
    margin-bottom: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--terracotta);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-form {
    width: 100%;
    margin-top: var(--space-xs);
}

/* ===== FOOTER ===== */
.footer {
    background: #0e1726;
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-lg) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    width: 120px;
    height: auto;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    font-size: 0.9rem;
}

.footer h4 {
    color: var(--white);
    margin-bottom: var(--space-xs);
    font-size: 1rem;
}

.footer a {
    transition: color var(--transition);
}

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

.footer-facebook {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-facebook svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-sm);
    font-size: 0.8rem;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (min-width: 768px) {
    .food-layout {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-map {
        grid-column: 1 / -1;
    }

    .gallery-atmosphere .gallery-item {
        aspect-ratio: 4/3;
    }

    .gallery-atmosphere {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-view .gallery-item-wide {
        aspect-ratio: 21/9;
    }

    .gallery-view .gallery-item:not(.gallery-item-wide) {
        aspect-ratio: 4/3;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }

    .footer-map {
        grid-column: auto;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem var(--space-md) var(--space-md);
        gap: 0;
        transition: right var(--transition);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-cta {
        margin-top: var(--space-sm);
        text-align: center;
    }

    .booking-options {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .drinks-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        min-height: 100svh;
    }
}
