:root {
    --burgundy-deep: #2a0a10;
    --burgundy: #4a0e1a;
    --burgundy-mid: #6b1a2a;
    --burgundy-light: #8c2840;
    --gold: #c9a84c;
    --gold-light: #dfc376;
    --gold-pale: #f0dda0;
    --cream: #f5e6c8;
    --cream-light: #faf3e6;
    --white: #fffdf8;
    --red-flower: #c0392b;
    --blue-flower: #7fa3c4;
    --green-leaf: #5a7a3a;
    --wheat: #c4a24e;
    --text-dark: #1a0508;
    --text-body: #3d1520;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', Georgia, serif;
    color: var(--text-body);
    background: var(--cream-light);
    overflow-x: hidden;
}

/* ═══════════════ NOISE TEXTURE OVERLAY ═══════════════ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* ═══════════════ NAVIGATION ═══════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    transition: all 0.5s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(42, 10, 16, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(42, 10, 16, 0.3);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    /* Odstęp płynny, nie stały. Na szerokim ekranie wychodzi te same 2rem
       co wcześniej, a przy węższym zaciska się sam — dzięki temu dołożenie
       kolejnej pozycji do menu nie wypycha go poza pasek. Dobieranie
       stałych wartości pod aktualne etykiety psułoby się przy każdej
       zmianie nazwy w Wygląd → Menu. */
    gap: clamp(0.7rem, 2.2vw, 2rem);
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
}

/* ═══════════════ HERO SECTION ═══════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--burgundy-deep);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(107, 26, 42, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(107, 26, 42, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(74, 14, 26, 0.8) 0%, var(--burgundy-deep) 70%);
}

/* Embroidery-inspired decorative corners */
.hero-corner {
    position: absolute;
    width: 300px;
    height: 300px;
    opacity: 0.15;
}

.hero-corner--tl { top: -20px; left: -20px; }
.hero-corner--tr { top: -20px; right: -20px; transform: scaleX(-1); }
.hero-corner--bl { bottom: -20px; left: -20px; transform: scaleY(-1); }
.hero-corner--br { bottom: -20px; right: -20px; transform: scale(-1); }

.hero-corner svg {
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    animation: fadeInUp 1.2s ease-out;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeIn 1.5s ease-out 0.3s both;
}

.hero-ornament-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-ornament-diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
}

.hero-title {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(3.5rem, 8vw, 7rem);
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(201, 168, 76, 0.3);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--gold-pale);
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 2.5rem;
    animation: fadeIn 1.5s ease-out 0.5s both;
}

.hero-quote {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--cream);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.85;
    animation: fadeIn 1.5s ease-out 0.8s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    animation: fadeIn 1.5s ease-out 1.1s both;
}

.hero-cta:hover {
    background: var(--gold);
    color: var(--burgundy-deep);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    opacity: 0.5;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════ SECTION STYLES ═══════════════ */
section {
    padding: 6rem 2rem;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem auto 0;
}

.section-divider-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.section-divider-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Dark section variant */
.section--dark {
    background: var(--burgundy-deep);
    color: var(--cream);
}

.section--dark .section-title {
    color: var(--gold);
}

.section--dark .section-label {
    color: var(--gold-light);
}

.section--warm {
    background: linear-gradient(180deg, var(--cream-light), var(--cream));
}

/* ═══════════════ O NAS (ABOUT) ═══════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-frame {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--burgundy);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 20px 20px 0 var(--cream), 20px 20px 0 1px var(--gold);
}

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

.about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-body);
}

.about-text p:first-child::first-letter {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    float: left;
    line-height: 0.8;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
    color: var(--burgundy);
}

/* ═══════════════ MENU SECTION ═══════════════ */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--gold);
    color: var(--burgundy-deep);
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.menu-category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 600;
    letter-spacing: 3px;
}

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

.menu-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

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

.menu-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cream);
}

.menu-item-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(201, 168, 76, 0.3);
    min-width: 20px;
    margin-bottom: 4px;
}

.menu-item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--cream);
    opacity: 0.6;
    font-style: italic;
    line-height: 1.5;
}

/* ═══════════════ DAILY SPECIALS ═══════════════ */
.specials-week {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.special-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(42, 10, 16, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.special-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(42, 10, 16, 0.12);
}

.special-card-day {
    background: var(--burgundy);
    color: var(--gold);
    padding: 0.75rem 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
}

.special-card-body {
    padding: 1.5rem;
}

.special-card-course {
    margin-bottom: 1rem;
}

.special-card-course:last-child {
    margin-bottom: 0;
}

.special-card-course-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.special-card-course-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--burgundy);
}

.special-card-course-desc {
    font-size: 0.85rem;
    color: var(--text-body);
    opacity: 0.7;
    font-style: italic;
}

.special-card-price {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--burgundy);
}

.special-card-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-body);
    opacity: 0.6;
}

/* ═══════════════ GALLERY ═══════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1;
    background: var(--burgundy);
    cursor: pointer;
    /* Kafel jest <button>, więc trzeba mu odebrać wygląd przycisku. */
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    font: inherit;
    color: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.gallery-item:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* Zamiast nazwy pliku pod kursorem — sama lupa, czyli podpowiedź,
   że w zdjęcie da się kliknąć. Nazwy zdjęć z aparatu (IMG_5234)
   nic gościowi nie mówiły. */
.gallery-item-lupa {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 10, 16, 0.45);
    color: var(--gold-pale);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.gallery-item:hover .gallery-item-lupa,
.gallery-item:focus-visible .gallery-item-lupa {
    opacity: 1;
}

/* Placeholder images with gradient backgrounds */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: 'Great Vibes', cursive;
    font-size: 1.5rem;
    opacity: 0.4;
}

.gp-1 { background: linear-gradient(135deg, var(--burgundy), var(--burgundy-mid)); }
.gp-2 { background: linear-gradient(135deg, var(--burgundy-mid), var(--burgundy-light)); }
.gp-3 { background: linear-gradient(135deg, var(--burgundy-light), var(--burgundy)); }
.gp-4 { background: linear-gradient(135deg, var(--burgundy-deep), var(--burgundy-mid)); }
.gp-5 { background: linear-gradient(135deg, var(--burgundy-mid), var(--burgundy-deep)); }

/* ═══════════════ CATERING ═══════════════ */
.catering-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.catering-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.catering-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-body);
}

.catering-packages {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.catering-package {
    background: var(--white);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 4px;
    padding: 2rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.catering-package:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.1);
}

.catering-package-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 0.5rem;
}

.catering-package-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-body);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.catering-package-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

.catering-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--burgundy);
    color: var(--gold);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.catering-cta:hover {
    background: var(--burgundy-deep);
    box-shadow: 0 4px 20px rgba(42, 10, 16, 0.3);
}

/* ═══════════════ CONTACT / FOOTER ═══════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
}

.contact-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-block p,
.contact-block a {
    font-size: 0.95rem;
    color: var(--cream);
    opacity: 0.8;
    line-height: 2;
    text-decoration: none;
    display: block;
}

.contact-block a:hover {
    color: var(--gold);
    opacity: 1;
}

.contact-hours {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    font-size: 0.95rem;
    color: var(--cream);
    opacity: 0.8;
}

.contact-hours span:last-child {
    color: var(--gold-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--gold);
    color: var(--burgundy-deep);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

footer {
    background: var(--burgundy-deep);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding: 2rem;
    text-align: center;
}

.footer-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: var(--cream);
    opacity: 0.4;
    letter-spacing: 1px;
}

.footer-logo {
    font-family: 'Great Vibes', cursive;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

/* ═══════════════ DECORATIVE ELEMENTS ═══════════════ */
.floral-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.floral-divider svg {
    width: 40px;
    height: 40px;
    fill: var(--gold);
    opacity: 0.3;
}

/* ═══════════════ RESERVATION STRIP ═══════════════ */
.reservation-strip {
    background: var(--burgundy);
    padding: 3rem 2rem;
    text-align: center;
}

.reservation-strip-inner {
    max-width: 600px;
    margin: 0 auto;
}

.reservation-strip h3 {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.reservation-strip p {
    font-family: 'Lora', serif;
    color: var(--cream);
    opacity: 0.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.reservation-strip .phone-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 3px;
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
    transition: border-color 0.3s;
}

.reservation-strip .phone-number:hover {
    border-color: var(--gold);
}

/* ═══════════════ MAP PLACEHOLDER ═══════════════ */
.map-container {
    width: 100%;
    height: 350px;
    background: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: sepia(30%) saturate(70%) hue-rotate(-10deg);
}

.map-overlay-text {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(42, 10, 16, 0.9);
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--gold);
}

.map-overlay-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--cream);
    line-height: 1.5;
}

/* ═══════════════ SCROLL ANIMATIONS ═══════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ═══════════════ MOBILE ═══════════════ */
@media (max-width: 968px) {
    .about-grid,
    .catering-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(42, 10, 16, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .specials-week {
        grid-template-columns: 1fr;
    }

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

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }

    .gallery-item {
        aspect-ratio: 16/10;
    }
}
