/* Custom Fonts & Variables */
:root {
    /* Color Palette */
    --primary: #0F2537;         /* Deep River Blue */
    --primary-light: #1A364A;   /* Lighter Blue for hover states */
    --primary-dark: #071522;    /* Darker Blue for deep backgrounds */
    --accent: #D4AF37;          /* Warm Gold / Amber for highlights */
    --accent-hover: #C59B27;    /* Darker Gold for hover */
    --silver-light: #F8FAFC;    /* Off-white / Silver light background */
    --silver: #E2E8F0;          /* Silver border / divider */
    --silver-dark: #94A3B8;     /* Muted Silver text / border */
    --text-dark: #1E293B;       /* Main body text (slate-800) */
    --text-muted: #64748B;      /* Muted text (slate-500) */
    --white: #FFFFFF;
    --success: #10B981;         /* Green for open status / success */
    --error: #EF4444;           /* Red for closed status / error */
    
    /* Typography */
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-serif: Georgia, Cambria, "Times New Roman", Times, serif;
    
    /* Spacing & Layout */
    --container-max: 1200px;
    --header-height: 80px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--primary);
    line-height: 1.25;
    font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1.5rem; text-align: center; position: relative; padding-bottom: 1rem; }
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: var(--radius-full);
}
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 1rem; }
p { margin-bottom: 1rem; color: var(--text-muted); }
p.lead { font-size: 1.2rem; color: var(--text-dark); }

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-py {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.bg-light { background-color: var(--silver-light); }
.bg-dark { background-color: var(--primary); color: var(--white); }
.bg-dark h2 { color: var(--white); }
.bg-dark p { color: var(--silver-dark); }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); align-items: center; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary-dark);
}
.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(15, 37, 55, 0.95);
    backdrop-filter: blur(8px);
    color: var(--white);
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(226, 232, 240, 0.1);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}
.logo svg {
    width: 32px;
    height: 32px;
    fill: var(--accent);
}

.nav-menu {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.25rem;
    border-radius: var(--radius-sm);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--silver-dark);
    padding: 0.25rem 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 2px;
    transition: var(--transition-fast);
}

.lang-btn:hover {
    color: var(--white);
}

.lang-btn.active {
    background-color: var(--accent);
    color: var(--primary-dark);
}

/* Mobile Nav Toggle */
.mobile-toggle {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    display: block;
}
.mobile-toggle svg {
    width: 28px;
    height: 28px;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        gap: 2rem;
    }
    .nav-link {
        font-weight: 500;
        color: var(--silver);
        position: relative;
        padding: 0.5rem 0;
    }
    .nav-link:hover, .nav-link.active {
        color: var(--accent);
    }
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: var(--transition-normal);
    }
    .nav-link:hover::after, .nav-link.active::after {
        width: 100%;
    }
    .mobile-toggle {
        display: none;
    }
    .mobile-nav {
        display: none !important;
    }
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--primary);
    z-index: 99;
    padding: 2rem;
    transform: translateX(100%);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: var(--shadow-xl);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav .nav-link {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(222, 232, 240, 0.1);
    color: var(--silver);
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
    color: var(--accent);
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - var(--header-height));
    min-height: 550px;
    background-image: linear-gradient(rgba(15, 37, 55, 0.75), rgba(15, 37, 55, 0.4)), url('../images/avalehe-banner.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
}

@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll;
    }
}

@media (max-width: 767px) {
    .hero {
        height: auto;
        min-height: calc(100vh - var(--header-height));
        padding: 3rem 0;
    }

    .hero-hours .hours-card--compact {
        max-height: 320px;
        overflow-y: auto;
    }
}

.hero-content {
    max-width: 700px;
    animation: fadeInUp var(--transition-slow) forwards;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.hero-hours {
    width: 100%;
    max-width: 420px;
    animation: fadeInUp var(--transition-slow) 0.15s forwards;
}

@media (min-width: 1100px) {
    .hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
        gap: 2.5rem;
    }

    .hero-hours {
        justify-self: end;
    }
}

@media (max-width: 1099px) {
    .hero-hours {
        max-width: none;
    }
}

.hero-badge {
    display: inline-block;
    background-color: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    color: var(--silver);
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

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

/* About Section */
.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.about-experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border-left: 4px solid var(--accent);
}

.about-experience-badge .years {
    font-size: 2rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.about-quote {
    margin: 0 0 2rem;
    padding: 1.5rem 1.5rem 1.5rem 1.25rem;
    border-left: 4px solid var(--accent);
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.about-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.about-quote p:last-of-type {
    margin-bottom: 1rem;
}

.about-quote footer {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}

.about-notices {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--silver);
    list-style: none;
}

.about-notices li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

.about-notices li:last-child {
    margin-bottom: 0;
}

.about-notices li::before {
    content: "!";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.about-features {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    background-color: var(--silver-light);
    color: var(--primary);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--silver);
}
.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-sans);
}

/* Trout Fishing & Calculator Section */
.fishing-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .fishing-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary);
    transition: var(--transition-normal);
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-num {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: rgba(15, 37, 55, 0.05);
    line-height: 1;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-top: 1rem;
    font-family: var(--font-sans);
}

.step-icon {
    color: var(--accent);
    margin-bottom: 1rem;
}
.step-icon svg {
    width: 40px;
    height: 40px;
}

/* Cost Calculator */
.calculator-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 2.5rem;
    border: 1px solid var(--silver);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .calc-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group label {
    font-weight: 600;
    color: var(--primary);
}

.slider-container {
    position: relative;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--silver);
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    background: var(--accent-hover);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Prep Options Grid */
.prep-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 576px) {
    .prep-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

.prep-card {
    border: 2px solid var(--silver);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    background: var(--white);
}

.prep-card:hover {
    border-color: var(--silver-dark);
}

.prep-card.active {
    border-color: var(--primary);
    background-color: rgba(15, 37, 55, 0.03);
}

.prep-card h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-sans);
}

.prep-card .price-tag {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
}

/* Calc Results Card */
.calc-results {
    background-color: var(--primary);
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.calc-results::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
}

.results-header h3 {
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.result-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.result-row.total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.result-row.total .price {
    color: var(--accent);
    font-size: 2rem;
    font-family: var(--font-serif);
}

.calc-disclaimer {
    font-size: 0.8rem;
    color: var(--silver-dark);
    margin-top: 1.5rem;
}

/* Menu Section */
.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--silver);
    padding-bottom: 1rem;
}

.menu-tab-btn {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.menu-tab-btn:hover {
    color: var(--primary);
    background-color: var(--silver-light);
}

.menu-tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
}

.menu-grid {
    display: none;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.menu-grid.active {
    display: grid;
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--silver);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--silver-dark);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.menu-item-title {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-sans);
}

.menu-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-serif);
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.menu-item-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.menu-tag {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.menu-tag.fish { background-color: rgba(15, 37, 55, 0.1); color: var(--primary); }
.menu-tag.local { background-color: rgba(212, 175, 55, 0.15); color: var(--accent-hover); }
.menu-tag.kids { background-color: rgba(16, 185, 129, 0.1); color: var(--success); }

/* Gallery Section */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    background-color: var(--silver-light);
    border: 1px solid var(--silver);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-normal);
}

.gallery-filter-btn:hover {
    border-color: var(--silver-dark);
}

.gallery-filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(15, 37, 55, 0.9), rgba(15, 37, 55, 0.2));
    opacity: 0;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: var(--white);
}

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

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

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-sans);
}

.gallery-overlay p {
    color: var(--silver);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 21, 34, 0.95);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.lightbox-caption {
    color: var(--white);
    margin-top: 1rem;
    text-align: center;
}

.lightbox-caption h4 {
    color: var(--white);
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev { left: -4rem; }
.lightbox-next { right: -4rem; }

@media (max-width: 1024px) {
    .lightbox-prev { left: 0; }
    .lightbox-next { right: 0; }
    .lightbox-close { right: 1rem; top: 1rem; }
}

/* Booking Form Section */
.booking-container {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--silver);
}

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

@media (min-width: 992px) {
    .booking-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.booking-info-side {
    background-color: var(--primary);
    color: var(--white);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.booking-info-side h2 {
    color: var(--white);
    text-align: left;
}
.booking-info-side h2::after {
    left: 0;
    transform: none;
}

.booking-info-list {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.booking-info-item svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.booking-info-item h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-sans);
}

.booking-info-item p {
    color: var(--silver-dark);
    margin-bottom: 0;
}

.booking-form-side {
    padding: 3rem;
}

.contact-booking {
    margin-top: 3rem;
}

.contact-grid .contact-booking {
    margin-top: 0;
}

.booking-type-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.booking-type-btn {
    background-color: var(--silver-light);
    border: 2px solid var(--silver);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.booking-type-btn.active {
    border-color: var(--primary);
    background-color: rgba(15, 37, 55, 0.03);
    color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--silver);
    border-radius: var(--radius-md);
    outline: none;
    transition: var(--transition-normal);
    font-family: var(--font-sans);
}

.form-control:focus {
    border-color: var(--primary);
}

.form-control.error {
    border-color: var(--error);
}

.error-msg {
    color: var(--error);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}

.error-msg.active {
    display: block;
}

textarea.form-control {
    resize: vertical;
}

/* Success State Overlay */
.booking-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    animation: fadeInUp var(--transition-normal) forwards;
}

.booking-success.active {
    display: flex;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.success-icon svg {
    width: 48px;
    height: 48px;
}

/* Contact & Seasonal Hours Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--silver);
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    color: var(--primary);
    flex-shrink: 0;
}
.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-sans);
}

/* Seasonal Hours & Live Indicator */
.hours-card {
    background-color: var(--primary);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
}

.hours-card h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.status-badge.open {
    background-color: rgba(16, 185, 129, 0.2);
    color: var(--success);
    border: 1px solid var(--success);
}

.status-badge.closed {
    background-color: rgba(239, 68, 68, 0.2);
    color: var(--error);
    border: 1px solid var(--error);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: currentColor;
    display: inline-block;
}

.status-badge.open .status-dot {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hours-season-block {
    padding-bottom: 0.25rem;
}

.hours-season-title {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-sans);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.hours-row-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 0.75rem;
}

.hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.hours-season-note {
    font-size: 0.8rem;
    color: var(--silver-dark);
    margin-top: 1.5rem;
}

.hours-card--compact {
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-lg);
}

.hours-card--compact h3 {
    font-size: 1.1rem;
    margin-bottom: 0.85rem;
}

.hours-card--compact .status-badge {
    margin-bottom: 1rem;
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
}

.hours-card--compact .hours-list {
    gap: 0.75rem;
}

.hours-card--compact .hours-season-title {
    font-size: 0.85rem;
    margin-bottom: 0.45rem;
}

.hours-card--compact .hours-row {
    font-size: 0.82rem;
    margin-bottom: 0.3rem;
    padding-bottom: 0.3rem;
}

.hours-card--compact .hours-row-sub {
    font-size: 0.76rem;
    padding-left: 0.5rem;
}

.hours-card--compact .hours-season-note {
    font-size: 0.7rem;
    margin-top: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 768px) and (max-width: 1099px) {
    .hours-card--compact .hours-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem 1.25rem;
    }
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--silver);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--silver-dark);
}

.faq-trigger {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-sans);
}

.faq-trigger svg {
    transition: var(--transition-normal);
    color: var(--silver-dark);
}

.faq-item.active .faq-trigger svg {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
    background-color: var(--silver-light);
}

.faq-content-inner {
    padding: 1.5rem;
    border-top: 1px solid var(--silver);
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 4px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.footer-logo svg {
    width: 36px;
    height: 36px;
    fill: var(--accent);
}

.footer-about p {
    color: var(--silver-dark);
    font-size: 0.95rem;
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--silver-dark);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 0.25rem;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--silver-dark);
    font-size: 0.95rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
}

.footer-contact-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(222, 232, 240, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--silver-dark);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

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

.social-link {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

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

/* Mobile Adjustments */
@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }
    
    .calculator-card {
        padding: 1.5rem;
    }
    
    .calc-results {
        padding: 1.5rem;
    }
    
    .booking-info-side {
        padding: 1.75rem 1.5rem;
    }
    
    .booking-form-side {
        padding: 2rem 1.5rem;
    }
    
    .booking-success {
        padding: 2rem 1.5rem;
    }
    
    .about-experience-badge {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .about-experience-badge .years {
        font-size: 1.5rem;
    }
    
    .about-experience-badge .text {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
}

/* Language Toggling */
body:not(.lang-ee) .lang-ee { display: none !important; }
body:not(.lang-en) .lang-en { display: none !important; }
body:not(.lang-ru) .lang-ru { display: none !important; }

