/* Fonts */
@font-face {
    font-family: 'Bright';
    src: url('fonts/Bright.woff2') format('woff2'), url('fonts/Bright.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Qanelas';
    src: url('fonts/Qanelas-Regular.woff2') format('woff2'), url('fonts/Qanelas-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Qanelas';
    src: url('fonts/Qanelas-SemiBold.woff2') format('woff2'), url('fonts/Qanelas-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Variables */
:root {
    --color-bg: #eae6dd;
    --color-accent-blue: #4568df;
    --color-accent-green: #6bd76b;
    --color-text-main: #2c3e50;
    /* Dark slate for contrast */
    --color-white: #ffffff;

    --font-heading: 'Bright', serif;
    --font-body: 'Qanelas', sans-serif;

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

    --border-radius: 12px;
}

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

html {
    overscroll-behavior: none;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-accent-blue);
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.btn-secondary {
    background-color: var(--color-accent-green);
    color: var(--color-text-main);
}

/* Section Spacing */
section {
    padding: var(--spacing-md) 0;
}

/* Header (Basic Stubs) */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: padding 0.3s ease, background 0.3s ease;
}

.main-header.scrolled {
    background: rgba(234, 230, 221, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xs) var(--spacing-md); /* Thinner on scroll */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 60px;
    /* Adjust based on actual SVG */
}

/* Hero (Basic Stubs) */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Using the high-res artwork as background */
    background-image: url('assets/491926826_1244615904330642_7604215599933827402_n.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    position: relative;
    color: var(--color-white);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 var(--spacing-sm);
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    /* Fallback */
    font-size: clamp(2.5rem, 5vw, 5rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

/* Parc Section */
.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--color-accent-blue);
    margin-bottom: var(--spacing-xs);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: var(--spacing-lg);
}

.parc-showcase {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parc-central-image {
    max-width: 500px;
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.parc-cards-cloud {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.parc-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: visible;
    position: absolute;
    width: 180px;
    height: 180px;
    z-index: 2;
}

.parc-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

/* Position cards in a cloud formation around the center */
.parc-card-1 {
    top: 10%;
    left: 15%;
    transform: rotate(-5deg);
}

.parc-card-2 {
    top: 5%;
    right: 18%;
    transform: rotate(4deg);
}

.parc-card-3 {
    top: 35%;
    left: 8%;
    transform: rotate(-3deg);
}

.parc-card-4 {
    top: 35%;
    right: 8%;
    transform: rotate(5deg);
}

.parc-card-5 {
    bottom: 15%;
    left: 20%;
    transform: rotate(3deg);
}

.parc-card-6 {
    bottom: 12%;
    right: 22%;
    transform: rotate(-4deg);
}

.parc-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.parc-card h3 {
    color: var(--color-accent-green);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

/* Specific style for image cards */
.parc-card .card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
    border-radius: var(--border-radius);
}

.parc-card:hover .card-img {
    transform: scale(1.1);
}

.parc-card .card-overlay {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-bg);
    padding: var(--spacing-xs) var(--spacing-sm);
    z-index: 3;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.parc-card .card-overlay h3 {
    color: var(--color-accent-blue);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.menu-formulas {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.formula {
    background: linear-gradient(135deg, var(--color-accent-blue), #6b8cff);
    color: var(--color-white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    text-align: center;
    min-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.formula:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(69, 104, 223, 0.3);
}

.formula-name {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.formula-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
}

.formules-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto var(--spacing-xl);
}

.formules-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius, 16px);
    transform: rotate(-5deg);
    box-shadow: 0 14px 40px rgba(44, 62, 80, 0.22);
    transition: transform 0.5s ease;
}

.formules-image img:hover {
    transform: rotate(-3deg) scale(1.02);
}

.formules-stack {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.formula.formula-lg {
    min-width: 0;
    padding: var(--spacing-md);
}

.formula.formula-lg .formula-price {
    font-size: 2.4rem;
    display: block;
    margin-top: 0.25rem;
}

.formula-sub {
    display: block;
    font-weight: 400;
    font-size: 0.85rem;
    opacity: 0.95;
    margin-top: 0.25rem;
}

@media (max-width: 900px) {
    .formules-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    .formules-image {
        max-width: 420px;
        margin: 0 auto;
    }
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.menu-tab {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--color-accent-blue);
    background: transparent;
    color: var(--color-accent-blue);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-tab:hover {
    background: rgba(69, 104, 223, 0.1);
}

.menu-tab.active {
    background: var(--color-accent-blue);
    color: var(--color-white);
}

.menu-content {
    position: relative;
}

.menu-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.menu-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-panel-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.menu-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: sticky;
    top: var(--spacing-md);
}

.menu-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: transform 0.5s ease;
}

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

.menu-items-list {
    background: var(--color-bg);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
}

.category-title {
    font-size: 2rem;
    color: var(--color-accent-green);
    border-bottom: 2px solid var(--color-accent-green);
    padding-bottom: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.menu-items-list .menu-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

/* Large screens: image on right, overlapping and tilted */
@media (min-width: 901px) {
    .menu-panel-inner {
        position: relative;
    }

    /* Swap order so image appears on the right */
    .menu-image {
        order: 2;
        z-index: 1;
        /* Behind the menu card */
        transform: scale(0.7) rotate(3deg) translateY(-60px);
        /* 30% smaller, tilted, and raised */
        margin-left: -60px;
        /* Overlap with menu card */
        transform-origin: left center;
        /* Rotate from left edge */
    }

    .menu-items-list {
        order: 1;
        z-index: 2;
        /* In front of the image */
        position: relative;
    }
}

/* Responsive menu */
@media (max-width: 900px) {
    .menu-panel-inner {
        grid-template-columns: 1fr;
    }

    .menu-image {
        position: relative;
        top: 0;
        max-height: 300px;
    }

    .menu-image img {
        max-height: 300px;
        object-fit: cover;
    }
}

.menu-item {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px dashed #ddd;
    transition: background 0.2s ease;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.5);
    padding-left: var(--spacing-xs);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.item-header h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text-main);
    margin: 0;
}

.item-price {
    font-weight: 600;
    color: var(--color-accent-blue);
    white-space: nowrap;
}

.item-desc {
    font-size: 0.9rem;
    color: #777;
    margin-top: 4px;
}

/* Badges */
.badge {
    display: inline-block;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 8px;
    vertical-align: middle;
}

.badge-chef {
    background: var(--color-accent-blue);
    color: var(--color-white);
}

.badge-vege {
    background: var(--color-accent-green);
    color: var(--color-text-main);
}

.badge-fish {
    background: #87ceeb;
    color: #2c3e50;
}

/* Events Section */
.events-section {
    overflow: hidden;
}

.events-scroll {
    display: flex;
    gap: 1.5rem;
    padding: 1rem var(--spacing-md) var(--spacing-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.events-scroll::-webkit-scrollbar {
    display: none;
}

.event-card {
    flex: 0 0 300px;
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.09);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 48px rgba(69, 104, 223, 0.2);
}

/* Card Header */
.event-card-header {
    background: var(--color-accent-blue);
    padding: 1.25rem 1.5rem 1rem;
    position: relative;
    overflow: hidden;
    min-height: 100px;
    display: flex;
    align-items: flex-end;
}

.event-card-header::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -20px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.event-card-header::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--color-white);
    position: relative;
    z-index: 1;
}

.event-date .day {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--color-white);
}

.event-date .month {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.35rem;
}

/* Card Body */
.event-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-card h3 {
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.35;
    margin-bottom: 0.4rem;
}

.event-artist {
    color: #999;
    font-size: 0.82rem;
    font-style: italic;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.event-formula {
    display: inline-block;
    align-self: flex-start;
    background: rgba(107, 215, 107, 0.13);
    color: #267326;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.28rem 0.7rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(107, 215, 107, 0.3);
}

.event-timing {
    font-size: 0.8rem;
    color: #aaa;
    font-weight: 500;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f0ece5;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.event-timing::before {
    content: '◷';
    font-size: 0.9rem;
    color: var(--color-accent-blue);
    opacity: 0.6;
}

/* Recurring card */
.event-card--recurring .event-card-header {
    background: linear-gradient(135deg, #2a7a2a 0%, #4caf50 100%);
}

.event-date--recurring {
    align-items: flex-start;
    gap: 0.2rem;
}

.event-recurring-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.2rem;
}

/* Reviews Section */
.reviews-section {
    background: var(--color-accent-blue);
    color: var(--color-white);
    overflow: hidden;
}

.reviews-section .section-title,
.reviews-section .section-subtitle {
    color: var(--color-white);
}

.reviews-cloud {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    padding: 0 var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    transition: transform 0.3s ease;
    height: fit-content;
}

.review-image-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    height: 300px;
}

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

.rotate-left {
    transform: rotate(-3deg);
}

.rotate-right {
    transform: rotate(3deg);
}

.rotate-left:hover,
.rotate-right:hover {
    transform: rotate(0) scale(1.05);
    z-index: 2;
}

.review-card:hover {
    transform: scale(1.02);
}

.review-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.review-text {
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.review-author {
    font-weight: 600;
    opacity: 0.8;
}

/* Privatization Section */
.privatization-section {
    background-color: var(--color-bg);
}

.privatization-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 350px;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.privatization-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    /* For caption if added later */
}

/* Asymmetric Grid Layout (Bento Style) */
.privatization-item:nth-child(1) {
    grid-column: span 2;
}

.privatization-item:nth-child(4) {
    grid-column: span 2;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .privatization-gallery {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: var(--spacing-sm);
        padding-bottom: var(--spacing-md); /* Space for scrollbar or shadow */
        grid-template-columns: none;
        grid-auto-rows: auto;
    }

    .privatization-item {
        flex: 0 0 85vw; /* Show mostly one item */
        height: 300px;
        scroll-snap-align: center;
        grid-column: auto !important; /* Reset bento grid spans */
    }

    .privatization-item:nth-child(n) {
        grid-column: auto;
    }
}

.privatization-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.privatization-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Map Section */
.map-section {
    padding-bottom: 0;
}

.map-container {
    margin-top: var(--spacing-md);
}

.map-container iframe {
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-container iframe:hover {
    filter: grayscale(0%);
}

/* Footer */
.main-footer {
    background: var(--color-text-main);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    max-width: 180px;
}

.footer-col h3 {
    color: var(--color-accent-green);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.footer-col address {
    font-style: normal;
}

.footer-col p {
    margin-bottom: var(--spacing-xs);
}

.footer-col a {
    color: var(--color-white);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--color-accent-green);
}

.hours {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.hour-row {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.hours-note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: var(--spacing-sm);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

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

.nearby-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.5rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 1.25rem auto 0;
    font-size: 0.88rem;
    color: #777;
}

.nearby-cities span strong {
    color: var(--color-accent-blue);
    font-weight: 600;
}

.noscript-menu {
    display: none;
}

noscript .noscript-menu {
    display: block;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #555;
}

/* Press Section */
.press-section {
    background: #f7f5f0;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.press-grid {
    display: flex;
    gap: 1.25rem;
    padding: 1rem var(--spacing-md) var(--spacing-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-top: 1.5rem;
}

.press-grid::-webkit-scrollbar {
    display: none;
}

.press-card {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    background: var(--color-white);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.06);
    scroll-snap-align: start;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.press-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.press-pub {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-blue);
}

.press-title {
    font-size: 0.95rem;
    color: var(--color-text-main);
    line-height: 1.5;
    font-style: italic;
    flex: 1;
    margin: 0;
}

.press-date {
    font-size: 0.78rem;
    color: #aaa;
}

.press-read {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent-blue);
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        background-position: center center;
        height: 100svh;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .menu-formulas {
        flex-direction: column;
        align-items: center;
    }

    .formula {
        width: 100%;
        max-width: 300px;
    }

    .main-header {
        padding: var(--spacing-sm);
    }

    .logo {
        height: 40px;
    }

    .main-nav .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    /* Parc section mobile layout */
    .parc-showcase {
        min-height: auto;
        flex-direction: column;
        gap: var(--spacing-lg);
        padding-bottom: var(--spacing-lg);
    }

    .parc-central-image {
        position: relative;
        max-width: 100%;
        height: 400px;
        margin-bottom: 0;
    }

    .parc-cards-cloud {
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
        padding: 0;
        width: 100%;
    }

    .parc-card {
        position: relative !important;
        width: 100% !important;
        height: 160px !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin-bottom: var(--spacing-md);

    }

    .parc-card .card-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .parc-card:hover {
        transform: translateY(-5px) !important;
    }

    .parc-card .card-overlay {
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .parc-card .card-overlay h3 {
        font-size: 0.75rem;
    }
}

/* Decorative dinosaur background elements */
.dino-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.dino-bg {
    position: absolute;
    width: 80px;
    height: auto;
    opacity: 0.15;
    pointer-events: none;
}

/* Position each dino at different locations with random rotations */
.dino-bg-1 {
    top: 15%;
    left: 5%;
    transform: rotate(-25deg);
    width: 70px;
}

.dino-bg-2 {
    top: 40%;
    right: 3%;
    transform: rotate(15deg);
    width: 90px;
}

.dino-bg-3 {
    top: 65%;
    left: 2%;
    transform: rotate(-10deg);
    width: 75px;
}

.dino-bg-4 {
    top: 80%;
    right: 8%;
    transform: rotate(30deg);
    width: 65px;
}

.dino-bg-5 {
    top: 25%;
    right: 12%;
    transform: rotate(-15deg);
    width: 85px;
    display: none;
}

.dino-bg-6 {
    top: 50%;
    left: 8%;
    transform: rotate(20deg);
    width: 70px;
    display: none;
}

/* Show more dinos on larger screens */
@media (min-width: 1024px) {

    .dino-bg-5,
    .dino-bg-6 {
        display: block;
    }
}

/* Hide some dinos on mobile */
@media (max-width: 768px) {

    .dino-bg-3,
    .dino-bg-4 {
        display: none;
    }

    .dino-bg-1,
    .dino-bg-2 {
        opacity: 0.1;
        width: 50px;
    }
}

/* Animations */
.animate-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-element.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for grids */
.parc-card:nth-child(1) {
    transition-delay: 0.1s;
}

.parc-card:nth-child(2) {
    transition-delay: 0.2s;
}

.parc-card:nth-child(3) {
    transition-delay: 0.3s;
}

.parc-card:nth-child(4) {
    transition-delay: 0.4s;
}

.parc-card:nth-child(5) {
    transition-delay: 0.5s;
}

.parc-card:nth-child(6) {
    transition-delay: 0.6s;
}

.menu-category:nth-child(1) {
    transition-delay: 0.1s;
}

.menu-category:nth-child(2) {
    transition-delay: 0.2s;
}

.menu-category:nth-child(3) {
    transition-delay: 0.3s;
}

.menu-category:nth-child(4) {
    transition-delay: 0.4s;
}

/* Header scroll effect */
.main-header {
    transition: background 0.3s ease, padding 0.3s ease;
}

.main-header.scrolled {
    background: rgba(234, 230, 221, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-md);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Floating animation for decorative elements */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Pulse animation for CTA buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(69, 104, 223, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(69, 104, 223, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(69, 104, 223, 0);
    }
}

.hero-buttons .btn-primary {
    animation: pulse 2s infinite;
}

/* Smooth image hover effects */
.parc-card:hover .parc-icon {
    animation: float 1s ease-in-out;
}

/* Équipements grid (privatisation) */
.equipements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.equipement-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.09);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.equipement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(44, 62, 80, 0.15);
}

.equipement-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.equipement-card h3 {
    text-align: center;
    padding: 1.25rem 1rem;
    margin: 0;
    font-size: 1.25rem;
    color: var(--color-primary, #4568dc);
}

@media (max-width: 768px) {
    .equipements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .equipement-card img {
        height: 200px;
    }
}

/* Centered events scroll (homepage teaser) */
.events-scroll.events-scroll--centered {
    justify-content: center;
}

@media (max-width: 992px) {
    .events-scroll.events-scroll--centered {
        justify-content: flex-start;
    }
}

/* Intro / À propos section */
.intro-section {
    padding: var(--spacing-lg) 0;
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.intro-image {
    order: 2;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius, 16px);
    transform: rotate(-4deg);
    box-shadow: 0 12px 36px rgba(44, 62, 80, 0.18);
    transition: transform 0.5s ease;
}

.intro-image img:hover {
    transform: rotate(-2deg) scale(1.02);
}

@media (max-width: 900px) {
    .intro-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    .intro-image {
        order: 2;
        max-width: 420px;
        margin: 0 auto;
    }
}

.intro-card {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-md) var(--spacing-sm);
}

.intro-eyebrow {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-accent-green);
    display: block;
    margin-bottom: 0.25rem;
}

.intro-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--color-accent-blue);
    margin: 0 0 var(--spacing-sm);
    line-height: 1.15;
}

.intro-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-main);
    margin-bottom: var(--spacing-sm);
}

.intro-card p:last-child {
    margin-bottom: 0;
}

.intro-card a {
    color: var(--color-accent-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Menu story (two-column block under CTA) */
.menu-story {
    max-width: 920px;
    margin: var(--spacing-lg) auto 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-md);
    align-items: stretch;
    padding: var(--spacing-md);
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(44, 62, 80, 0.08);
}

.menu-story-col {
    padding: var(--spacing-sm);
}

.menu-story-eyebrow {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-accent-green);
    display: block;
    margin-bottom: 0.25rem;
}

.menu-story-col h3 {
    font-size: 1.6rem;
    color: var(--color-accent-blue);
    margin: 0 0 0.75rem;
}

.menu-story-col p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text-main);
    margin: 0;
}

.menu-story-col a {
    color: var(--color-accent-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.menu-story-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(44, 62, 80, 0.18), transparent);
}

@media (max-width: 768px) {
    .menu-story {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        padding: var(--spacing-sm);
    }
    .menu-story-divider {
        width: 60%;
        height: 1px;
        margin: 0 auto;
        background: linear-gradient(to right, transparent, rgba(44, 62, 80, 0.18), transparent);
    }
}