:root {
    --primary-yellow: #FFE600;
    /* Vivid yellow */
    --accent-blue: #1E95FC;
    /* Accent Blue */
    --text-black: #000000;
    --text-white: #FFFFFF;
    --marquee-height: 15vh;
    /* Adjustable height for the strips */
    --marquee-font-size: 20vh;
    /* Large font size for the massive text effect */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--text-black);
    overflow-x: hidden;
    /* Prevent horizontal scroll only */
    min-height: 100vh;
}

.hero-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: relative;
}

/* Marquee Strips */
/* Marquee Strips */
.marquee-strip {
    background-color: var(--accent-blue);
    height: var(--marquee-height);
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
}

.marquee-content-wrapper {
    display: flex;
    white-space: nowrap;
    position: absolute;
    /* We will animate this wrapper */
    animation: scroll-left 34s linear infinite;
    /* Slowed down by ~40% */
    width: max-content;
    will-change: transform;
}

.marquee-text {
    font-family: 'Anton', sans-serif;
    font-size: 30vh;
    /* 2x the strip height for perfect 50/50 split */
    color: var(--text-black);
    text-transform: uppercase;
    line-height: 0.8;
    /* Consistent compact line height */
    padding-right: 0.2em;
    flex-shrink: 0;
    width: auto;
    display: flex;
}

/* 
   SPLIT TEXT LOGIC 
   Font size 30vh. Strip height 15vh.
*/

.top-strip .marquee-text {
    align-items: flex-start;
    transform: translateY(0);
    /* Exact alignment */
}

.bottom-strip .marquee-text {
    align-items: flex-start;
    /* Reset align */
    transform: translateY(-50%);
    /* Exact alignment for bottom half */
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Center Video Area */
.center-stage {
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.7);
    /* Darken video slightly for text contrast */
}

.hero-content {
    position: relative;
    z-index: 5;
    color: var(--text-white);
}

.subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.main-title {
    font-family: 'Anton', sans-serif;
    font-size: 4rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 1;
}

.cta-button {
    background: var(--primary-yellow);
    border: 1px solid var(--primary-yellow);
    color: var(--text-black);
    padding: 10px 30px;
    font-size: 0.9rem;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: transparent;
    color: var(--primary-yellow);
}

/* Bottom Menu Trigger */
.menu-trigger-container {
    position: fixed;
    bottom: 40px;
    /* Floating */
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    /* Above everything */
    background-color: #1a1a1a;
    /* Dark background for the tab */
    padding: 15px 55px;
    /* Increased padding (30%) */
    border-radius: 50px;
    /* Pill shape for floating */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Shadow for depth */
}

.menu-btn {
    background: none;
    border: none;
    color: var(--primary-yellow);
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    /* Increased gap for logo */
    cursor: pointer;
}

.menu-logo {
    height: 40px;
    /* Increased height (30%) */
    width: auto;
    display: block;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    /* Increased width */
    height: 3px;
    /* Slightly thicker */
    background-color: var(--primary-yellow);
}

/* Bottom Drawer */
.bottom-drawer {
    position: fixed;
    bottom: -100%;
    /* Hidden initially */
    left: 0;
    width: 100%;
    height: 50vh;
    /* Half screen height */
    background-color: #111;
    z-index: 30;
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 2px solid var(--primary-yellow);
}

.bottom-drawer.open {
    bottom: 0;
}

.drawer-header {
    position: absolute;
    top: 20px;
    right: 20px;
}

.close-btn {
    background: none;
    border: none;
    color: var(--primary-yellow);
    font-size: 2rem;
    cursor: pointer;
}

.drawer-nav ul {
    list-style: none;
    text-align: center;
}

.drawer-nav li {
    margin: 15px 0;
}

.drawer-nav a {
    color: var(--text-white);
    text-decoration: none;
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.drawer-nav a:hover {
    color: var(--primary-yellow);
}

/* Services Section */
.services-section {
    background-color: #0a0a0a;
    padding: 0 2%;
    position: relative;
    z-index: 5;
    overflow-x: auto;
    min-height: 100vh;
    /* Fill the fold */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertically center */
}

.services-header {
    text-align: center;
    margin-bottom: 5vh;
    /* Use vh for responsive spacing */
    position: relative;
    display: inline-block;
    width: 100%;
    flex-shrink: 0;
}

.services-title {
    font-family: 'Anton', sans-serif;
    font-size: 20vw;
    /* Massive text */
    color: var(--primary-yellow);
    text-transform: uppercase;
    line-height: 0.8;
    margin: 0;
    position: relative;
    z-index: 1;
}

.services-subtitle {
    font-family: 'Rock Salt', cursive;
    color: var(--accent-blue);
    font-size: 2rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    z-index: 2;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.services-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    max-width: 100%;
    padding-bottom: 20px;
    flex-wrap: nowrap;
    margin-top: 20px;
}

.service-card {
    background-color: #111;
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
}

.card-image {
    width: 100%;
    height: 12vh;
    /* Responsive height */
    min-height: 100px;
    background-color: #222;
    background-size: cover;
    background-position: center;
}

.placeholder-img {
    background: linear-gradient(45deg, #222, #333);
}

.card-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h3 {
    font-family: 'Anton', sans-serif;
    color: var(--primary-yellow);
    font-size: 1.4rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    line-height: 1;
}

.card-desc {
    font-family: 'Inter', sans-serif;
    color: #ccc;
    font-size: 0.8rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .services-title {
        font-size: 22vw;
        /* Even larger on mobile */
    }

    .services-subtitle {
        font-size: 1.2rem;
        bottom: -10px;
    }

    .services-grid {
        justify-content: flex-start;
        /* Ensure scroll on mobile */
    }
}

@media (max-width: 1200px) {
    .services-grid {
        justify-content: flex-start;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* About Section */
.about-section {
    background-color: var(--text-white);
    color: var(--text-black);
    padding: 100px 5%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.about-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    flex: 1;
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.about-image:hover {
    filter: grayscale(0%);
}

.about-content {
    flex: 1;
}

.about-title {
    font-family: 'Anton', sans-serif;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: var(--text-black);
}

.about-title .text-yellow {
    color: var(--primary-yellow);
    /* Should be visible against white if dark enough, or change bg */
}

/* 
   Wait, the user wanted the "style of our new site". 
   Our site is dark mode. The reference image was white.
   I should switch this to dark mode.
*/
.about-section {
    background-color: #111;
    /* Dark background */
    color: var(--text-white);
}

.about-title {
    color: var(--text-white);
}

.about-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
}

@media (max-width: 1024px) {
    .about-container {
        gap: 40px;
        /* Reduce gap for tablet */
    }

    .about-image-wrapper {
        height: 450px;
    }

    .about-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-image-wrapper {
        width: 100%;
        height: 350px;
    }

    .about-title {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .about-section {
        padding: 60px 5%;
    }
}

/* Gallery Section */
.gallery-section {
    background-color: #0a0a0a;
    padding: 100px 2%;
    position: relative;
    z-index: 5;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.gallery-title {
    font-family: 'Anton', sans-serif;
    font-size: 6vw;
    color: var(--text-white);
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 20px;
}

.gallery-title .text-yellow {
    color: var(--primary-yellow);
}

.gallery-subtitle {
    font-family: 'Rock Salt', cursive;
    color: var(--accent-blue);
    font-size: 1.5rem;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    z-index: 2;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

/* Bento Grid System */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    /* Packs them tight */
    gap: 15px;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-item {
    background-color: #222;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.02);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

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

/* Grid Spans */
.large-square {
    grid-column: span 2;
    grid-row: span 2;
}

.wide {
    grid-column: span 2;
}

.tall {
    grid-row: span 2;
}

/* Responsive adjustments */
/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        grid-auto-rows: 300px;
    }

    .large-square,
    .wide,
    .tall {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-title {
        font-size: 15vw;
        /* Increase size for mobile impact */
    }

    .gallery-subtitle {
        font-size: 1.2rem;
        width: 100%;
    }
}

.gallery-title {
    font-size: 12vw;
}

/* Reviews Section */
.reviews-section {
    background-color: #0d0d0d;
    padding: 100px 5%;
    position: relative;
    z-index: 5;
    text-align: center;
}

.reviews-header {
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.reviews-title {
    font-family: 'Anton', sans-serif;
    font-size: 5rem;
    color: var(--text-white);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
}

.reviews-title .text-yellow {
    color: var(--primary-yellow);
}

.reviews-subtitle {
    font-family: 'Rock Salt', cursive;
    color: var(--accent-blue);
    font-size: 1.5rem;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    z-index: 2;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.reviews-widget-container {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 200px;
}

/* Contact Section */
.contact-section {
    background-color: #050505;
    padding: 100px 5%;
    position: relative;
    z-index: 5;
    color: var(--text-white);
}

.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-title {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-desc {
    font-family: 'Inter', sans-serif;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 400px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Inter', sans-serif;
    color: #ccc;
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--accent-blue);
    /* Blue accent for icons */
    /* If using emojis as placeholders, filter to blue or replace with SVG */
    /* For now, text emojis: might need to be SVGs for true recolor. 
       Let's stick to emojis but if user wants specific style, SVGs better.
       I will assume emojis are fine for draft or use filter. */
    filter: sepia(100%) hue-rotate(190deg) saturate(500%);
}

/* Contact Form */
.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
    background-color: #111;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #222;
}

.contact-form-wrapper h3 {
    font-family: 'Anton', sans-serif;
    /* or Inter bold? Ref looks like header font */
    color: var(--accent-blue);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    padding: 10px 0;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    opacity: 1;
}

/* Responsive Contact */
@media (max-width: 1024px) {
    .contact-container {
        gap: 40px;
    }

    .contact-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-form-wrapper {
        width: 100%;
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 25px;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-section {
        padding: 60px 5%;
    }
}

.contact-submit-btn {
    background-color: var(--accent-blue);
    color: var(--text-white);
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    align-self: flex-start;
    text-transform: uppercase;
    margin-top: 10px;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.contact-submit-btn:hover {
    background-color: #167ccf;
    /* Darker blue */
    transform: translateY(-2px);
}

.contact-map {
    margin-top: 60px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    /* Enabled for custom pin positioning */
    /* Map filter moved to iframe to allow ignored pin */
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: block;
}

.contact-map:hover iframe {
    opacity: 1;
}



.custom-map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 48px;
    height: 48px;
    color: var(--primary-yellow);
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}

/* Footer Section */
.site-footer {
    background-color: #000;
    padding: 80px 5%;
    position: relative;
    z-index: 5;
    border-top: 1px solid #222;
}

.footer-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-left {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.footer-title {
    font-family: 'Anton', sans-serif;
    font-size: 5rem;
    color: var(--primary-yellow);
    text-transform: uppercase;
    line-height: 0.9;
    margin: 0;
}

.footer-title .text-white {
    color: var(--text-white);
}

.footer-subtitle {
    font-family: 'Rock Salt', cursive;
    color: var(--accent-blue);
    font-size: 1.5rem;
    position: absolute;
    bottom: 10px;
    left: 20px;
    transform: rotate(-3deg);
    z-index: 2;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.footer-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: var(--text-white);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-yellow);
    transform: translateY(-3px);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #333;
    margin: 10px 0;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 15px;
}

.made-by {
    font-family: 'Inter', sans-serif;
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.react-logo {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.react-logo:hover {
    opacity: 1;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-container {
        gap: 30px;
    }

    .footer-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .footer-right {
        align-items: center;
        /* Center align on mobile */
    }

    .footer-title {
        font-size: 15vw;
        line-height: 1;
    }

    .footer-subtitle {
        left: 50%;
        bottom: -20px;
        transform: translateX(-50%) rotate(-3deg);
        font-size: 1.2rem;
    }

    .site-footer {
        padding: 60px 5% 100px 5%;
        /* Extra bottom padding for menu */
    }
}

/* Responsive Low-Height Adjustment */
@media (max-height: 800px) {
    .menu-trigger-container {
        padding: 10px 40px;
        bottom: 20px;
    }

    .menu-logo {
        height: 30px;
    }
}

.accent-icon {
    position: absolute;
    width: 60px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 0 10px rgba(30, 149, 252, 0.5));
}

.accent-services {
    top: -30px;
    right: 20%;
    transform: rotate(15deg);
}

.accent-about {
    bottom: 20px;
    left: -30px;
    width: 80px;
    transform: rotate(-10deg);
}


.accent-gallery {
    top: 0;
    right: 10px;
    width: 50px;
}

.accent-reviews {
    top: -20px;
    left: -40px;
    width: 60px;
    transform: rotate(-15deg);
}

/* Elfsight Reviews Widget Customization */
/* These classes target the standard structure of Elfsight widgets to blend them into the custom design */

/* Universal Font Override */
[class*="transform-component-module"],
[class*="eapps-widget"] {
    font-family: 'Inter', sans-serif !important;
}

/* Background & Cards */
.eapps-widget-list-grid-item,
.eapps-widget-list-masonry-item,
.eapps-testimonial-slider-slide-inner {
    background-color: #111 !important;
    border: 1px solid #333 !important;
    border-radius: 4px !important;
    box-shadow: none !important;
}

/* Text Colors */
.eapps-widget-item-author-name,
.eapps-widget-item-date,
.eapps-widget-item-text {
    color: #eee !important;
}

.eapps-widget-item-author-name {
    font-weight: 700;
    color: var(--primary-yellow) !important;
}

/* Ratings */
.eapps-widget-rating-star-icon svg,
.eapps-star-icon svg {
    fill: var(--primary-yellow) !important;
}

/* Load More / Write Review Buttons */
.eapps-widget-button {
    background-color: transparent !important;
    border: 1px solid var(--accent-blue) !important;
    color: var(--accent-blue) !important;
    font-family: 'Anton', sans-serif !important;
    text-transform: uppercase !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
}

.eapps-widget-button:hover {
    background-color: var(--accent-blue) !important;
    color: #fff !important;
}

/* Header (if visible) */
.eapps-widget-header-title-text {
    font-family: 'Anton', sans-serif !important;
    color: var(--text-white) !important;
    text-transform: uppercase;
}

/* Links */
.eapps-link {
    color: var(--accent-blue) !important;
    text-decoration: none !important;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary-yellow);
    text-decoration: none;
    cursor: pointer;
}