:root {
    /* Palette from logo + sunset mock */
    --deep-blue: #2E5874;
    --sky-blue: #7FAFC8;
    --mid-blue: #3F7292;
    --sand: #F2E5CF;
    --warm-orange: #D6903E;
    --rust-red: #C7463B;
    --ink: #1E2A32;
    --muted-ink: #49606F;
    --radius-xl: 0;
    --radius-md: 0;
    --shadow-soft: 0 10px 30px rgba(46,88,116,.12);
    --shadow-card: 0 6px 22px rgba(46,88,116,.15);
    --maxw-wrap: 1180px;
    --gutter: 20px;
    --font-head: "Dancing Script", cursive;
    --font-body: "Dancing Script", cursive;
}

/* Base */
html, body {
    font-size: 28px; /* Increase base font size */
    font-weight: 600; /* Make text bolder */
    background: var(--sand);
    color: var(--ink);
    font-family: var(--font-body);
    overflow-x: hidden !important;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 40px; /* or at least the footer height */
}

a {
    color: var(--deep-blue);
    text-decoration: none;
}

    a:hover {
        color: var(--mid-blue);
    }

.container {
    max-width: var(--maxw-wrap);
    margin: 0 auto;
    padding: 0 var(--gutter);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

h1, h2, h3 {
    font-family: var(--font-head);
    font-weight: 700; /* Make headings bold */
    color: var(--deep-blue);
    letter-spacing: .2px;
    line-height: 1.2;
}

.menu-section h2 {
    font-size: 3rem;
    margin-bottom: 32px;
    text-align: center;
    position: relative;
    padding-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.menu-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--sky-blue), var(--warm-orange));
    border-radius: 0;
}

.empty-state {
    background: rgba(173,216,230,0.1);
    border: 2px dashed rgba(127,175,200,0.3);
    border-radius: 0;
    padding: 48px 24px;
    text-align: center;
}

.empty-state p {
    color: var(--muted-ink);
    font-size: 1.1rem;
    margin: 0;
}

.nav {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Already present, keeps left/right split */
    position: relative;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    justify-content: flex-start; /* Ensure links are left-aligned */
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1 1 auto; /* Take up available space */
}

.lang-toggle {
    position: static; /* Remove absolute positioning */
    margin-left: auto; /* Pushes it to the far right */
    right: 0;
    top: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    height: 100%;
}

@media (max-width: 1400px) {
    .nav a {
        font-size: 1.4rem;
    }

    .nav .btn {
        font-size: 1.1rem;
        padding: 0.45rem 0.7rem;
    }

    .nav-links {
        gap: 0.8rem;
    }
}

@media (max-width: 1200px) {
    .nav a {
        font-size: 1.2rem;
    }

    .nav .btn {
        font-size: 1rem;
        padding: 0.4rem 0.6rem;
    }

    .nav-links {
        gap: 0.6rem;
    }
}

@media (max-width: 1060px) {
    .nav a {
        font-size: 1rem;
    }

    .nav .btn {
        font-size: 0.9rem;
        padding: 0.35rem 0.5rem;
    }

    .nav-links {
        gap: 0.4rem;
    }
}

h1 {
    font-size: 2.6rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

.btn {
    display: inline-block;
    padding: .9rem 1.25rem;
    border-radius: var(--radius-md);
    background: var(--warm-orange);
    color: #fff;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
    transition: background 0.18s;
}

    .btn:hover {
        background: var(--mid-blue);
    }

.card {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.grid4 .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(46,88,116,0.15);
}

/* ===== NAV / HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(242,229,207,0);
    transition: background .25s ease, box-shadow .25s ease;
}

    .site-header.scrolled {
        background: rgba(242,229,207,.92);
        backdrop-filter: saturate(110%) blur(6px);
        box-shadow: 0 6px 16px rgba(46,88,116,.08);
    }

.nav {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .nav .brand img {
        height: 64px;
        max-height: 72px;
    }

.events-scroll-container{
    background-color: transparent;
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: left;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav a {
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--deep-blue);
    -webkit-text-stroke: 0.5px var(--sand);
    text-shadow: 0.5px 0.5px 0 var(--sand);
    white-space: nowrap;
}

.nav .btn {
    padding: .55rem .9rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 54px;
    height: 54px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    margin: 0 auto;
    padding: 0;
}

    .nav-toggle .bar {
        display: block;
        width: 34px;
        height: 5px;
        margin: 5px 0;
        background: var(--deep-blue);
        border-radius: 0;
        transition: 0.3s;
    }

/* Language toggle (top-right on hero) */
.lang-toggle {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 4;
}

    .lang-toggle a {
        color: #fff;
        opacity: .9;
        font-weight: 700;
    }

.site-header.scrolled .lang-toggle a {
    color: var(--deep-blue);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 68vh;
    max-height: 150%;
    overflow: hidden;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    background-image: url('/assets/images/hero-sunset.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* Fallback for browsers that don't support WebP */
    image-rendering: -webkit-optimize-contrast;
}

.centered-map {
    display: flex;
    justify-content: center;
    margin: 32px 0;
}

    .centered-map iframe {
        width: 70vw;
        max-width: 900px;
        min-width: 280px;
        height: 400px;
        border: 0;
        border-radius: 0;
        box-shadow: 0 2px 16px rgba(46,88,116,0.10);
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        /*background: linear-gradient(180deg, rgba(30,42,50,.10) 0%, rgba(30,42,50,.22) 60%, rgba(30,42,50,.28) 100%), radial-gradient(100% 150% at 50% 0%, rgba(214,144,62,.18), rgba(214,144,62,0) 60%);*/
    }

.hero-tagline {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--ink);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-md);
    z-index: 5;
    text-align: center;
}

.hero-inner {
    position: relative;
    padding-top: 96px;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.2rem,4vw,3.4rem);
    margin: .6rem 0 .2rem;
    text-shadow: 0 3px 10px rgba(0,0,0,.55);
}

.hero p {
    font-size: clamp(1.05rem,1.4vw,1.2rem);
    opacity: .95;
    text-shadow: 0 2px 8px rgba(0,0,0,.55);
}

.hero-ctas {
    margin-top: 1.2rem;
    display: flex;
    gap: .8rem;
    justify-content: center;
}

.btn-ghost {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
}

    .btn-ghost:hover {
        background: rgba(255,255,255,.2);
    }

.hero-mark {
    width: clamp(120px,18vw,220px);
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,.25));
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 15vh;
    min-height: 60px;
    max-height: 120px;
    z-index: 0;
    pointer-events: none;
}

/* ===== GRIDS / CARDS ===== */
.grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: left;
    width: 100%;
    margin: 0 auto;
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.card.p {
    padding: 22px;
}

.grid4 .card.p {
    position: relative;
    overflow: hidden;
}

.grid4 .card.p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sky-blue), var(--warm-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grid4 .card.p:hover::before {
    opacity: 1;
}

.grid4 .card.p h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--deep-blue);
}

.grid4 .card.p p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--muted-ink);
}

.grid4 .card.p .menu-block-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--warm-orange);
    margin-top: 12px;
}

.icon {
    width: 64px;
    height: 64px;
    display: block;
    margin: 6px 0 12px;
}

/* ===== MENU LIST ===== */
.menu-section h2 {
    margin-bottom: 10px;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(46,88,116,.2);
}

    .menu-item .desc {
        display: block;
        color: var(--muted-ink);
        font-size: .95rem;
    }

.price {
    white-space: nowrap;
    font-weight: 700;
    color: var(--deep-blue);
}

/* ===== EVENTS STRIP ===== */
.events {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(127,175,200,.15), rgba(242,229,207,.5));
}

.wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    width: 100%;
}

/* ===== SECTION BACKGROUNDS / STACKING ===== */
section {
    position: relative;
}

.section, .container-section {
    background: var(--sand);
}

.after-hero {
    background: var(--sand);
    z-index: 0;
}

.card {
    position: relative;
    z-index: 1;
}

/* ===== FACEBOOK CONTAINER ===== */
.fb-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .fb-container iframe, .fb-container .fb-page {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        display: inline-block;
    }

/* ===== FOOTER ===== */
.footer {
    background: #fff url('/assets/textures/rope-light.png') center top/160px repeat-x;
    padding: 50px 0;
}

.f-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
}

main > .card.p {
    margin-bottom: 32px;
    border-bottom: 1.5px dashed var(--sky-blue);
    padding-bottom: 24px;
}

    main > .card.p:last-child {
        margin-bottom: 0;
        border-bottom: none;
        padding-bottom: 0;
    }

/* ===== POSTER & MENU MODAL ===== */
.poster-modal, .menu-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30,42,50,0.85);
    justify-content: center;
    align-items: center;
    transition: opacity 0.2s;
}

    .poster-modal.active, .menu-modal.active {
        display: flex;
    }

.poster-modal-img, .menu-modal-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    background: #fff;
}

.poster-modal-close, .menu-modal-close {
    position: absolute;
    top: 32px;
    right: 48px;
    font-size: 2.8rem;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    z-index: 2100;
    text-shadow: 0 2px 8px #000;
    transition: color 0.2s, transform 0.2s;
    background: transparent;
    border: none;
    padding: 8px;
    line-height: 1;
}

    .poster-modal-close:hover, .menu-modal-close:hover {
        color: var(--warm-orange);
        transform: scale(1.1);
    }
    
    .poster-modal-close:focus, .menu-modal-close:focus {
        outline: 3px solid var(--warm-orange);
        outline-offset: 4px;
    }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===== ADMIN ===== */
.admin-invisible-corner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 48px;
    z-index: 3000;
    opacity: 0;
    cursor: pointer;
}

/* ===== MENU IMAGE GALLERY ===== */
.menu-image-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 2px 12px rgba(46,88,116,0.07);
    padding: 32px 20px;
    margin-bottom: 48px;
    max-width: 100%;
}

    .menu-image-gallery .menu-image-item {
        width: 100%;
        max-width: 800px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu-image-gallery img.menu-zoomable {
        width: 100%;
        max-width: 800px;
        height: auto;
        max-height: 80vh;
        border-radius: 0;
        box-shadow: 0 4px 32px rgba(0,0,0,0.13);
        background: #f2e5cf;
        cursor: zoom-in;
        object-fit: contain;
        margin: 0 auto;
        display: block;
    }

    .menu-image-gallery.two-cols {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 100%;
    }

        .menu-image-gallery.two-cols .menu-image-item {
            width: 100%;
            max-width: 100%;
        }

        .menu-image-gallery.two-cols img.menu-zoomable {
            max-width: 100%;
            max-height: 70vh;
            width: 100%;
        }

/* ===== MENU LIST BLOCKS ===== */
.menu-list-block {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item-block {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px dashed #e0e0e0;
    background: #fff8f2;
    border-radius: 0;
    margin-bottom: 10px;
}

.menu-block-thumb {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    flex-shrink: 0;
}

.menu-block-title {
    font-weight: bold;
    color: var(--deep-blue);
    min-width: 120px;
    margin-right: 12px;
    font-size: 1.08rem;
}

.menu-block-desc {
    color: var(--muted-ink);
    font-size: 0.98rem;
    flex: 1 1 auto;
    margin-right: 12px;
}

.menu-block-price {
    color: var(--warm-orange);
    font-weight: 600;
    font-size: 1.08rem;
    min-width: 70px;
    text-align: right;
}

/* ===== CATEGORY CHIPS ===== */
.category-list-admin {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.category-chip {
    background: #7FAFC8;
    color: #fff;
    border-radius: 0;
    padding: 4px 14px 4px 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.category-remove {
    color: #fff;
    margin-left: 8px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    font-size: 1.1em;
    transition: color 0.15s;
}

    .category-remove:hover {
        color: #C7463B;
    }

/* ===== BUBBLES ===== */
#bubble-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 0 8px 2px rgba(173,216,230,0.3);
    will-change: transform, opacity;
    pointer-events: none;
    opacity: 0.8;
    background: rgba(173,216,230,0.7);
    animation: bubble-wiggle 2s linear infinite;
}

@keyframes bubble-wiggle {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-8px);
    }

    40% {
        transform: translateX(8px);
    }

    60% {
        transform: translateX(-6px);
    }

    80% {
        transform: translateX(6px);
    }

    100% {
        transform: translateX(0);
    }
}

/* Prevent selection on menu images and zoomed images */
.menu-zoomable,
.menu-modal-img,
.poster-thumb,
.poster-modal-img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* ===== MOBILE & RESPONSIVE ===== */
@media (max-width:960px) {

    body {
        padding-top: 55px; /* Compact space for 2-row mobile nav only */
    }

    .hero {
        background-size: cover;
        background-position: center top;
        padding: 0 0 80px 0;

    }

    .grid3, .grid2 {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .lang-toggle {
        display: none !important; /* Hide desktop language toggle on mobile */
    }

    .nav-toggle {
        display: none !important; /* Hide hamburger on mobile */
    }

    .brand {
        order: 1;
        margin-left: 0;
    }

    .nav.open .nav-links {
        position: absolute;
        right: var(--gutter);
        top: 64px;
        display: flex;
        flex-direction: column;
        gap: .6rem;
        background: #fff;
        padding: 12px;
        border-radius: 0;
        box-shadow: var(--shadow-card);
    }
}

@media (max-width:768px) {
    .hero {
        min-height: 65vh;
        max-height: 100%;
    }

    .nav .brand img {
        height: 52px;
    }
}

@media (max-width: 900px) {
    .menu-image-gallery .menu-image-item {
        max-width: 100%;
        min-width: 0;
    }

    .menu-image-gallery.two-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .menu-item-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }

    .menu-block-thumb {
        margin-bottom: 4px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .menu-block-title, .menu-block-desc, .menu-block-price {
        margin-right: 0;
        min-width: 0;
        text-align: center;
    }

    .menu-list-block {
        align-items: center;
    }
}

@media (max-width: 600px) {
    html, body {
        font-size: 17px;
    }

    h1, .hero h1 {
        font-size: 2rem !important;
        line-height: 1.13;
    }

    h2 {
        font-size: 1.3rem !important;
        margin-bottom: 0.7em;
    }

    h3 {
        font-size: 1.1rem !important;
    }

    .hero-inner {
        padding-top: 55px;
        padding-bottom: 30px;
    }

    .hero {
        min-height: 25vh;
        max-height: 100%;
        padding: 0 0 38px 0;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        background-size: contain;
    }

    .hero-tagline {
        position: relative;
        display: block;
        margin: 0 auto;
        font-size: 0.95rem;
        padding: 0.25rem 0.3rem;
        max-width: 95vw;
        white-space: normal;
        background: var(--sand);
        color: var(--ink);
        border-radius: var(--radius-md);
        z-index: 2;
        top: 0;
        right: 0;
        text-align: center;
    }

    .hero-wave {
        height: 70px !important;
        min-height: 70px !important;
        max-height: 90px !important;
        width: 100%;
        display: block;
        position: relative;
        z-index: 1;
    }

    .hero + .hero-tagline {
        margin-top: 0;
    }

    .after-hero {
        margin-top: 0 !important;
        padding-top: 30px !important;
    }

    .container {
        padding: 0 4px;
    }

    .card, .card.p {
        font-size: 1rem;
        padding: 10px 4px !important;
        border-radius: 0;
        margin-bottom: 14px;
    }

    .grid3, .grid2 {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .menu-card-col, .menu-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .menu-card {
        margin-bottom: 8px;
        border-radius: 0;
        padding: 8px 4px;
    }

    .menu-image-gallery img.menu-zoomable,
    .menu-block-thumb {
        max-width: 70px !important;
        width: 100%;
        height: auto !important;
        border-radius: 0;
        margin: 0 auto 6px auto;
        display: block;
    }

    .menu-image-gallery,
    .menu-image-gallery.two-cols {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        padding: 8px 0 8px 0;
        margin-bottom: 14px;
        border-radius: 0;
    }

        .menu-image-gallery .menu-image-item {
            min-width: 0;
            max-width: 100%;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

    .menu-list-block {
        margin: 0;
        padding: 0;
    }

    .menu-item-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 8px 0;
        margin-bottom: 6px;
        border-radius: 0;
        background: #fff8f2;
    }

    .menu-block-title {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }

    .menu-block-desc {
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .menu-block-price {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }

    .btn, .nav .btn {
        font-size: 1.1rem;
        padding: 1rem 1.3rem;
    }

    .nav a {
        font-size: 1.5rem;
    }

    .poster-modal-img, .menu-modal-img {
        max-width: 98vw;
        max-height: 60vh;
        border-radius: 0;
    }

    .poster-modal-close, .menu-modal-close {
        top: 12px;
        right: 16px;
        font-size: 1.5rem;
    }

    .fb-container iframe, .fb-container .fb-page {
        max-width: 98vw;
    }

    .f-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .admin-invisible-corner {
        width: 32px;
        height: 32px;
    }

    section.container,
    section.menu-section.container,
    section.after-hero {
        margin: 12px 0 !important;
    }
}

@media (max-width: 600px) {
    .hero{
        padding: 7rem 0 0 0;
    }

    .hero-tagline {
        position: static !important;
        left: unset !important;
        right: unset !important;
        transform: none !important;
        display: block;
        margin: 0;
        font-size: 0.95rem;
        padding: 0.5rem 0.8rem 0 0.8rem; /* top right bottom left */
        max-width: 100vw;
        width: 100%;
        box-sizing: border-box;
        background: var(--sand);
        color: var(--ink);
        border-radius: 0;
        text-align: center;
        z-index: 2;
    }

    .menu-image-gallery img.menu-zoomable {
        width: 180px !important;
        min-width: 0 !important;
        max-width: 90vw !important;
        height: auto !important;
        border-radius: 0;
        margin: 0 auto 6px auto;
        display: block;
        object-fit: contain;
    }

    .menu-image-gallery .menu-image-item {
        justify-content: center;
        align-items: center;
    }

    .fb-container {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: auto;
        box-sizing: border-box;
        padding: 0 !important;
    }

        .fb-container .fb-page {
            width: 100% !important;
            min-width: 0 !important;
            max-width: 100vw !important;
            margin: 0 auto !important;
            box-sizing: border-box;
        }

    /* Responsive adjustments for 2-row mobile nav */
    .mobile-top-row a,
    .mobile-top-row .btn,
    .mobile-lang-inline a {
        font-size: 0.8rem;
        padding: 0.45em 0.25em;
    }

    body {
        padding-top: 50px; /* Tighter spacing on very small screens */
    }
}

/* ===== MOBILE TOP BAR ===== */
@media (min-width: 961px) {
    .mobile-top-bar {
        display: none !important;
    }
}

@media (max-width: 960px) {
    .mobile-top-bar {
        display: flex !important; /* Always show on mobile */
        position: fixed !important; /* Force fixed positioning */
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99999 !important; /* Even higher than anything else */
        pointer-events: auto !important; /* Ensure it's clickable */
    }
}

.mobile-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999; /* Highest priority - always on top */
    background: var(--sand);
    box-shadow: 0 2px 8px rgba(46,88,116,.10);
    padding: 4px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    pointer-events: auto; /* Ensure clickable */
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Each row in the 2-row layout */
.mobile-top-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 2px;
    align-items: stretch;
    pointer-events: auto; /* Ensure row is clickable */
}

    .mobile-top-row a,
    .mobile-top-row .btn {
        flex: 1 1 0;
        min-width: 0;
        margin: 0;
        border: none;
        background: #fff;
        color: var(--deep-blue);
        font-size: 0.85rem;
        font-weight: 600;
        padding: 0.5em 0.3em;
        text-align: center;
        box-shadow: none;
        pointer-events: auto; /* Ensure links are clickable */
        cursor: pointer; /* Show pointer cursor */
        transition: background 0.15s, color 0.15s;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-decoration: none;
    }

        .mobile-top-row a.btn {
            background: var(--warm-orange);
            color: #fff;
        }

            .mobile-top-row a:hover,
            .mobile-top-row .btn:hover {
                background: var(--mid-blue);
                color: #fff;
            }

/* Language toggle integrated in row */
.mobile-lang-inline {
    display: flex;
    flex: 1 1 0;
    gap: 2px;
    align-items: stretch;
    pointer-events: auto; /* Ensure language links are clickable */
}

    .mobile-lang-inline a {
        flex: 1;
        background: #fff;
        color: var(--deep-blue);
        font-weight: 700;
        font-size: 0.85rem;
        padding: 0.5em 0.3em;
        text-align: center;
        transition: background 0.15s, color 0.15s;
        text-decoration: none;
        pointer-events: auto; /* Ensure clickable */
        cursor: pointer; /* Show pointer cursor */
    }

        .mobile-lang-inline a.active {
            background: var(--sky-blue);
            color: #fff;
        }

        .mobile-lang-inline a:hover {
            background: var(--warm-orange);
            color: #fff;
        }

/* Old mobile-top-buttons - keep for backward compatibility but override */
.mobile-top-buttons {
    display: none;
}

    .mobile-top-buttons a,
    .mobile-top-buttons .btn {
        flex: 1 1 0;
        min-width: 0;
        margin: 0;
        border-radius: 0;
        border: none;
        background: #fff;
        color: var(--deep-blue);
        font-size: 1.05rem;
        font-weight: 600;
        padding: 0.7em 0.2em;
        text-align: center;
        box-shadow: none;
        border-right: 1px solid var(--sky-blue);
        transition: background 0.15s, color 0.15s;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .mobile-top-buttons a:last-child,
        .mobile-top-buttons .btn:last-child {
            border-right: none;
        }

        .mobile-top-buttons a.btn,
        .mobile-top-buttons .btn {
            background: var(--warm-orange);
            color: #fff;
        }

            .mobile-top-buttons a:hover,
            .mobile-top-buttons .btn:hover {
                background: var(--mid-blue);
                color: #fff;
            }

    .mobile-top-buttons .lang-toggle {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        margin-left: 0.2em;
        padding-left: 0.4em;
        border-left: 1px solid var(--sky-blue);
        height: 100%;
    }

        .mobile-top-buttons .lang-toggle a {
            background: none;
            color: var(--deep-blue);
            font-weight: 700;
            font-size: 1em;
            padding: 0.2em 0.5em;
            border-radius: 0;
            margin: 0 0.1em;
            transition: background 0.15s, color 0.15s;
        }

            .mobile-top-buttons .lang-toggle a[style*="font-weight:bold"] {
                background: var(--sky-blue);
                color: #fff;
                text-decoration: underline;
            }

            .mobile-top-buttons .lang-toggle a:hover {
                background: var(--warm-orange);
                color: #fff;
            }

.mobile-top-buttons-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100vw;
    align-items: stretch;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.5em 0 0.2em 0;
}

    .mobile-top-buttons-row a,
    .mobile-top-buttons-row .btn {
        flex: 1 1 0;
        min-width: 0;
        margin: 0;
        border-radius: 0;
        border: none;
        background: #fff;
        color: var(--deep-blue);
        font-size: 1.15rem;
        font-weight: 700;
        padding: 0.9em 0.2em;
        text-align: center;
        box-shadow: 0 1px 4px rgba(0,88,116,0.07);
        border: 1px solid var(--sky-blue);
        transition: background 0.15s, color 0.15s;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .mobile-top-buttons-row a.btn,
        .mobile-top-buttons-row .btn {
            background: var(--warm-orange);
            color: #fff;
            border: none;
        }

            .mobile-top-buttons-row a:hover,
            .mobile-top-buttons-row .btn:hover {
                background: var(--mid-blue);
                color: #fff;
            }

/* OLD mobile-lang-toggle - HIDDEN (now using mobile-lang-inline) */
.mobile-lang-toggle {
    display: none !important;
}

    .mobile-lang-toggle a {
        display: none !important;
    }

#seagull-container {
    pointer-events: none;
    background-color: transparent;
    position: absolute;
    top: 5%;
    left: 0;
    width: 100vw;
    height: 40%;
    z-index: 3;
    overflow: visible;
}

.event-flex {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    justify-content: flex-start;
}

.event-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 12px 0;
}

.event-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--deep-blue);
    font-family: var(--font-head);
    margin-bottom: 0.2em;
}

.event-date {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--mid-blue);
    margin-bottom: 0.5em;
}
.event-info {
    flex: 1 1 0;
    text-align: left;
    min-width: 0;
}

.event-poster {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 700px) {
    .event-flex {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }

    .event-info {
        text-align: center;
    }
}

.card > img {
    border-radius: 0;
    height: auto;
    display: block;
    margin: 0 auto;
}

.lang-toggle a,
.site-header.scrolled .lang-toggle a,
.mobile-top-buttons .lang-toggle a,
.mobile-lang-toggle a {
    color: var(--deep-blue) !important;
    opacity: 1;
    background: none;
}

    .lang-toggle a:hover,
    .mobile-top-buttons .lang-toggle a:hover,
    .mobile-lang-toggle a:hover {
        color: var(--mid-blue) !important;
        background: none;
    }

.side-banner {
    position: fixed;
    top: 0;
    width: 5%;
    height: 100%;
    background-color: var(--sand);
    background-repeat: repeat-y;
    background-size: auto 100%;
    z-index: 100;
    pointer-events: none;
    opacity: 0.7;
}

.left-banner {
    left: 0;
    background-image: linear-gradient(to left, var(--sand) 0%, transparent 100%), url('/assets/images/tile-seaweed.png');
}

.right-banner {
    right: 0;
    background-image: linear-gradient(to right, var(--sand) 0%, transparent 100%), url('/assets/images/tile-seaweed.png');
}

@media (max-width: 1100px) {
    .side-banner {
        display: none;
    }
}

.site-footer {
    background: var(--deep-blue);
    color: #fff;
    font-size: 0.8rem;
    padding: 0px 0 0px 0;
    text-align: center;
    letter-spacing: 0.02em;
    position: fixed;
    width:99%;
    height: 25px;
    bottom: 0;
    z-index: 10;
    box-shadow: 0 -2px 12px rgba(46,88,116,0.07);
}

.footer-inner {
    max-width: var(--maxw-wrap);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px; /* Minimal separation */
    margin-top: 20px;
}

.photo-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

    .photo-item img:hover {
        transform: scale(1.02);
    }

.photo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

    .photo-modal.active {
        display: flex;
    }

.photo-modal-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.photo-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 2100;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.event-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    padding: 16px;
    transition: box-shadow 0.2s ease;
}

    .event-card:hover {
        box-shadow: 0 6px 16px rgba(46, 88, 116, 0.15);
    }

.event-info {
    margin-bottom: 12px;
}

.event-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--deep-blue);
    margin-bottom: 8px;
}

.event-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mid-blue);
    margin-bottom: 12px;
}

.event-desc {
    font-size: 1.2rem;
    color: var(--ink);
    line-height: 1.8;
}

.event-poster {
    text-align: center;
}

    .event-poster img.poster-thumb {
        max-width: 280px;
        max-height: 400px;
        border-radius: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
        cursor: pointer;
        transition: transform 0.2s ease;
    }

        .event-poster img.poster-thumb:hover {
            transform: scale(1.05);
        }

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

.fb-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; /* Ensure it takes the full width of the parent */
    max-width: 1000px; /* Match the data-width */
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

    .fb-container .fb-page {
        width: 100% !important; /* Force the Facebook feed to take the full width */
        max-width: 1000px; /* Match the data-width */
    }

/* Old menu-section-flex styles removed - now using menu-image-gallery + grid4 layout */

.menu-image-item img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.poster-thumb{
    cursor: zoom-in;
}

.event-poster-thumb {
    max-width: 100px;
    max-height: 140px;
    width: 100px;
    height: 140px;
    display: inline-block;
    border-radius: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
    object-fit: fill;
    background: #fff8f2;
}

:root {
    --h-header: 64px;
    --h-footer: 25px; 
}

body {
    padding-top: var(--h-header);
    padding-bottom: calc(var(--h-footer) + env(safe-area-inset-bottom));
}

.nav a, .btn {
    min-height: 25px;
    line-height: 25px;
}

a:focus-visible, button:focus-visible {
    outline: 3px solid var(--warm-orange);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition: none !important;
    }

    #bubble-container, .bubble {
        display: none !important;
    }
}

.lang-toggle a, .mobile-lang-toggle a {
    padding: 0.4em 0.8em;
    border-radius: 0;
}

    .lang-toggle a:focus-visible, .mobile-lang-toggle a:focus-visible {
        outline: 3px solid var(--warm-orange);
    }

@media (min-width: 701px) {
    .menu-block-desc {
        line-height: 1.5;
    }

    .menu-item-block {
        padding: 20px 12px;
    }
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 70%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

/* Old responsive menu-section-flex styles removed */

#seagull-container {
    pointer-events: none;
    background-color: transparent;
    position: absolute;
    top: 5%;
    left: 0;
    width: 100vw;
    height: 40%;
    z-index: 3;
    overflow: visible; 
}

@media (max-width: 700px) {
    #seagull-container {
        top: 0 !important;
        height: 20vh !important;
        z-index: 10;
        overflow: visible !important; 
    }
}

.card.p > img.poster-thumb,
.grid4 .card.p > img.poster-thumb,
.menu-items-column .card.p > img.poster-thumb {
    width: 160px;
    height: 160px;
    object-fit: cover;
    display: block;
    margin: 18px auto 12px auto;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(46,88,116,0.10);
    background: #fff8f2;
}

@media (max-width: 1200px) {
    .grid4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .grid4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid4 {
        grid-template-columns: 1fr;
    }
}

.menu-img-holder {
    width: 160px;
    height: 160px;
    margin: 18px auto 12px auto;
    display: flex;
    position: relative;
    overflow: hidden;
}

.menu-img-holder img {
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-section {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.menu-section:nth-child(1) { animation-delay: 0.1s; }
.menu-section:nth-child(2) { animation-delay: 0.2s; }
.menu-section:nth-child(3) { animation-delay: 0.3s; }
.menu-section:nth-child(4) { animation-delay: 0.4s; }
.menu-section:nth-child(5) { animation-delay: 0.5s; }
.menu-section:nth-child(6) { animation-delay: 0.6s; }

.menu-img-holder {
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(46,88,116,0.2);
}

    .menu-img-holder img.poster-thumb {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
        display: block;
    }

    .menu-img-holder:empty {
        /* Optionally, add a placeholder or keep it blank */
        background: #fff8f2;
    }

#contact-container {
    background-image: url('/assets/images/beach_bg.png');
    font-size: 1.3em;
    text-shadow: 1px 2px 3px #e0e0e0;
}

.nav a:hover {
    background: var(--sky-blue);
    color: var(--deep-blue);
    box-shadow: 0 2px 8px rgba(46,88,116,0.10);
    border-radius: 0;
    transform: scale(1.04);
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
}

#pour-emporter {
    background-image: url('/assets/images/houses_bg.jpg');
    font-size: 1.3em;
    text-shadow: 1px 2px 3px #e0e0e0;
    padding-bottom: 3rem;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

#desserts {
    background-image: url('/assets/images/butte_bg.jpg');
    font-size: 1.3em;
    text-shadow: 1px 2px 3px #e0e0e0;
    padding-bottom: 3rem;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

#contact-container .card {
    background-color: rgba(255, 255, 255, 0);
}

/* Make #contact section twice as wide and text bigger */
#contact {
    max-width: calc(var(--maxw-wrap) * 2) !important;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    
}

    #contact,
    #contact .card,
    #contact .card * {
        font-size: 1.2em !important;
    }

#reservations-card {
    background-color: var(--mid-blue);
}

    #reservations-card h2 {
        color: var(--warm-orange);
    }

    #reservations-card p{
        color: white;
    }

/* Add colorful side background images to Menu, Events, and Contact sections */
#events-container {
    position: relative;
    width: 100vw;
    max-width: none;
    min-height: 520px;
    height: auto;
    margin: 0 auto 48px auto;
    background: var(--sand) url('/assets/images/burds_bg.png') center center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 0;
    box-sizing: border-box;
}

#menu-du-jour {
    position: relative;
    background: linear-gradient(180deg, rgba(127,175,200,.15), rgba(242,229,207,.5)), url('/assets/images/cliffs_bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    box-sizing: border-box;
}

    #menu-du-jour h2 {
        color: var(--deep-blue);
        text-shadow: 1px 2px 3px rgba(255,255,255,1);
    }

    #contact {
        position: relative;
        width: 90%;
        background: var(--sand) url('/assets/images/docks_bg.jpg');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        
    }

    /* Optional: Make sure content stays readable over backgrounds */
    .menu-section > .card,
    .events > .card,
    #contact > .card {
        background: rgba(255,255,255,0.92);
        /* Slightly opaque white for contrast */
    }

    #contact .card{
                background: rgba(255,255,255,0.35);
    
    }

/* --- Footer Newsletter Section --- */
.footer-newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 260px;
    background: url('/assets/images/flag_bg.jpg') center center/cover no-repeat;
    align-items: center;
    color: #fff;
    margin: 0;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
}

    .footer-newsletter .footer-flag {
        height: 100%;
        width: 100%;
        background: none;
    }

    .footer-newsletter .footer-newsletter-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: rgba(255,255,255,0.70);
        color: var(--deep-blue);
        height: 100%;
        padding: 32px 12px 24px 12px;
    }

        .footer-newsletter .footer-newsletter-center h2 {
            font-family: var(--font-head);
            font-size: 2.4rem;
            color: var(--deep-blue);
            margin-bottom: 12px;
            font-weight: 700;
        }

        .footer-newsletter .footer-newsletter-center p {
            font-size: 1.1rem;
            margin-bottom: 18px;
            color: var(--ink);
        }

.footer-newsletter-form {
    display: flex;
    width: 100%;
    max-width: 600px;
    margin: 0 0;
    background: #fff;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 2px 12px rgba(46,88,116,0.10);
}

    .footer-newsletter-form input[type="email"] {
        flex: 1 1 auto;
        border: none;
        padding: 16px 18px;
        font-size: 1.1rem;
        outline: none;
        background: #f8f8f8;
        color: var(--ink);
    }

    .footer-newsletter-form button {
        border: none;
        background: var(--warm-orange);
        color: #fff;
        font-size: 1.1rem;
        font-weight: 700;
        padding: 0 32px;
        cursor: pointer;
        transition: background 0.18s;
    }

        .footer-newsletter-form button:hover {
            background: var(--mid-blue);
        }

.footer-newsletter .footer-newsletter-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 32px 24px 24px 24px;
    background: rgba(199,70,59,0.85);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
}

    .footer-newsletter .footer-newsletter-right a,
    .footer-newsletter .footer-newsletter-right p {
        color: #fff;
        margin: 0 0 8px 0;
        text-decoration: none;
        font-weight: 700;
    }

@media (max-width: 900px) {
    .footer-newsletter {
        grid-template-columns: 1fr;
        min-height: 0;
    }

        .footer-newsletter .footer-flag,
        .footer-newsletter .footer-newsletter-right {
            display: none;
        }

        .footer-newsletter .footer-newsletter-center {
            border-radius: 0;
            padding: 24px 8px 18px 8px;
        }

    .footer-newsletter-form {
        max-width: 98vw;
    }
}

#events-container main h2 {
    color: aliceblue;
    text-shadow: 1px 1px 4px rgba(255,255,255,.2);
}
/* Prevent event cards from overlapping or being clipped on the right */
#events-container .events-grid {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    z-index: 2;
    position: relative;
    overflow: visible;
    justify-content: center;
}

@media (max-width: 1500px) {
    #events-container {
        min-height: 420px;
        height: auto;
        padding-bottom: 32px;
    }

        #events-container .events-grid {
            max-width: 98vw;
        }
}

.footer-newsletter-form button {
    text-align: left;
    font-size: 1.5vw;
}

.facebook-pages-row {
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
}

@media (max-width: 1100px) {
    .facebook-pages-row {
        flex-direction: column;
        align-items: center;
    }
}

#seagull-container {
    width: 100% !important;
    max-width: 100vw;
    left: 0;
    right: 0;
    overflow-x: hidden !important;
}

#events-container h3 {
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,.7);
}

/* News Section - "Quoi de neuf" / "What's New" */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.news-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-poster {
    width: 100%;
    max-width: 400px; /* Limit poster to half size (was full width) */
    margin: 0 auto; /* Center the poster */
    border-radius: 0;
    overflow: hidden;
}

.news-poster img {
    width: 100%;
    height: auto;
    cursor: pointer;
    display: block;
}

.news-content {
    flex: 1;
}

.news-content h3 {
    color: var(--deep-blue);
    margin-bottom: 12px;
}

.news-content p {
    color: var(--muted-ink);
    line-height: 1.6;
}

/* Responsive adjustments for news posters */
@media (max-width: 960px) {
    .news-poster {
        max-width: 350px;
    }
}

@media (max-width: 600px) {
    .news-poster {
        max-width: 100%; /* Full width on mobile */
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
