@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400;0,900&family=Inter:wght@400;600;700;800&display=swap');

:root {
    --primary: #e67e22; /* High-quality orange as requested */
    --primary-light: #f39c12;
    --accent: #c9a45c;
    --bg-main: #ffffff;
    --bg-card: #ffffff;
    --text: #2a2a2a;
    --text-muted: #6b6b6b;
    --white: #ffffff;
    --border: #e0e0e0;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

/* --- New Premium Navigation from Redesign3 --- */
:root {
  --glass: #ffffff;
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-nav: 0 10px 30px rgba(0, 0, 0, 0.05);
}

#navbar {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: min(1180px, calc(100% - 32px));
  background: var(--glass);
  padding: 14px 40px;
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-nav);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#navbar.scrolled {
  top: 0;
  width: 100%;
  border-radius: 0;
  background: #ffffff;
  padding: 10px 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: var(--transition);
  padding: 4px 10px;
}

.nav-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

#navbar.scrolled .nav-logo img {
  height: 64px;
}

.nav-links-list {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links-list a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
  font-family: 'Inter', sans-serif;
}

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

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

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

.nav-cta {
  display: inline-flex;
  padding: 10px 24px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.nav-cta:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.2);
}

.nav-extra {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* --- Language Dropdown --- */
.lang-dropdown {
  position: relative;
  cursor: pointer;
  padding-bottom: 15px; /* Invisible bridge for hover */
  margin-bottom: -15px;
}

.lang-active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: rgba(0,0,0,0.03);
  border-radius: 50px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.lang-active:hover {
  background: rgba(0,0,0,0.06);
  border-color: var(--primary);
}

.lang-active img {
  height: 18px; /* Slightly bigger since it's the only item */
  width: auto;
  border-radius: 2px;
}

.lang-active span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
}

.lang-list {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  min-width: 160px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  padding: 10px 0;
  display: none;
  z-index: 1100;
  border: 1px solid var(--border);
}

.lang-dropdown:hover .lang-list {
  display: block;
  animation: fadeIn 0.3s;
}

.lang-list a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  text-decoration: none;
  color: #444 !important;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  border-bottom: none !important;
}

.lang-list a:hover {
  background: #fcfcfc;
  color: var(--primary) !important;
  padding-left: 25px;
}

.lang-list img {
  height: 14px;
  width: auto;
  border-radius: 2px;
}

@media (max-width: 900px) {
  #navbar {
    padding: 12px 18px;
    width: 90%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .nav-cta {
    font-size: 0.72rem;
    padding: 8px 16px;
  }
  .nav-logo {
     font-size: 1.1rem;
  }
}


/* --- Floating Call Button (Fluid) --- */
.floating-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    background: var(--primary);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4); /* Orange shadow */
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    opacity: 0;
    visibility: hidden;
}

.floating-call.visible {
    opacity: 1;
    visibility: visible;
    animation: bounce 2s infinite;
}

.floating-call:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.5); /* Orange shadow */
    background: var(--primary-light);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* --- Hero --- */
.hero {
    height: 100svh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
}

.hero-nav {
    display: block; /* Acts as a container, children are absolute on desktop */
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-arrow:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
    border-color: var(--primary);
}

.hero-arrow.prev { left: 40px; }
.hero-arrow.next { right: 40px; }

@media (max-width: 900px) {
    .hero-nav {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
        transform: translateY(30px);
        opacity: 0;
        animation: fadeInUp 1s forwards 1.3s;
    }

    .hero-arrow {
        position: static;
        transform: none;
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .hero-arrow:hover {
        transform: scale(1.1);
    }
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 20px;
    color: var(--white);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.8s;
}

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

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s forwards 1.1s;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    cursor: pointer;
    min-width: 200px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    background: var(--primary-light);
    box-shadow: 0 15px 30px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--white);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-5px);
    background: var(--white);
    color: var(--text);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

@media (max-width: 600px) {
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 14px 28px;
    }
}

/* --- About --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 20px 20px 0 var(--primary); /* Orange accent */
}

.section-tag {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 30px;
}

/* --- Menu --- */
#menu {
    background: var(--bg-main);
}

.menu-tabs {
    display: flex;
    justify-content: center; /* Centered tabs again */
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.menu-tab {
    padding: 12px 30px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    font-family: 'Outfit';
    font-weight: 600;
    transition: var(--transition);
    border-radius: 5px;
}

.menu-tab.active, .menu-tab:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.2); /* Orange shadow */
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    display: none;
}

.menu-grid.active {
    display: grid;
    animation: fadeIn 0.6s;
}

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

.menu-item {
    padding: 25px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.menu-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.menu-item h4 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* --- Contact & Location --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.map-container {
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary);
}

/* --- Footer --- */
footer {
    background: var(--bg-card);
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-logo img {
    height: 80px; /* Reduced footer logo size */
    margin-bottom: 20px;
}

.social-links {
    margin-bottom: 30px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* --- Mobile Menu Toggle --- */
.mobile-menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    padding: 5px;
}

.mobile-menu-close-icon {
    display: none;
}

.mobile-only { display: none; }
.desktop-only { display: flex; }

@media (max-width: 900px) {
    #navbar,
    #navbar.scrolled {
        background: #ffffff !important;
        opacity: 1 !important;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1102;
        animation: rotatePizza 15s linear infinite;
        transform-origin: center;
        transition: transform 0.3s ease;
        padding: 0;
        width: 62px;
        height: 62px;
        border-radius: 50%;
        position: relative;
    }
    
    .mobile-menu-toggle img {
        height: 62px;
        width: 62px;
        display: block;
        mix-blend-mode: multiply;
        margin-right: -10px;
    }

    .mobile-menu-toggle.is-open {
        animation: none;
        background: var(--primary);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 12px;
        right: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    }

    .mobile-menu-toggle.is-open img {
        display: none;
    }

    .mobile-menu-toggle.is-open .mobile-menu-close-icon {
        display: block;
        color: var(--white);
        font-size: 2.6rem;
        line-height: 1;
    }
    
    .mobile-menu-toggle:active {
        transform: scale(0.8);
    }

    @keyframes rotatePizza {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .mobile-only { display: block; }
    .desktop-only { display: none; }

    .nav-extra .desktop-only,
    .nav-extra .nav-cta {
        display: none !important;
    }

    .nav-extra {
        gap: 10px;
    }

    .nav-mobile-langs {
        display: flex !important;
        flex-direction: row !important;
        gap: 20px;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid var(--border);
        width: 80%;
        justify-content: center;
    }

    .nav-mobile-logo {
        margin-top: auto;
        padding-top: 28px;
        width: 100%;
        display: flex !important;
        justify-content: center;
        border-top: 1px solid var(--border);
    }

    .nav-mobile-logo img {
        width: 140px;
        max-width: 70%;
        height: auto;
        object-fit: contain;
        opacity: 0.95;
    }

    .nav-mobile-langs a {
        padding: 0 !important;
        border: none !important;
        width: auto !important;
    }
    
    .nav-mobile-langs img {
        height: 36px; /* Bigger flags as requested */
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        border-radius: 4px;
        transition: transform 0.3s ease;
    }

    .nav-mobile-langs img:active {
        transform: scale(0.9);
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
        z-index: 999;
        display: none;
        opacity: 0;
        visibility: hidden;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content {
        order: -1; /* Text first */
    }

    .about-img {
        order: 1; /* Image second */
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-container {
        height: 350px;
    }

    #navbar {
        top: 0;
        width: 100%;
        border-radius: 0;
        background: #ffffff !important;
        padding: 10px 20px;
    }

    .nav-logo img {
        height: 60px; /* Smaller mobile logo */
    }

    .nav-links-list {
        background: #ffffff !important;
        opacity: 1 !important;
        visibility: visible !important;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        max-width: 100vw;
        height: 100svh;
        background: #ffffff !important;
        padding: 80px 30px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
        gap: 25px;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        justify-content: center; /* Centered in menu height */
        align-items: center; /* Centered horizontally */
        text-align: center;
        z-index: 1001;
    }

    .nav-links-list.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-links-list a {
        font-family: 'Outfit', sans-serif;
        font-size: 1.6rem;
        width: auto;
        padding: 5px 0;
        border-bottom: 2px solid transparent;
        color: var(--text);
        font-weight: 500;
        text-transform: capitalize;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

    .nav-links-list a::after {
        display: none; /* Hide default animated underline */
    }

    .nav-links-list a:hover {
        color: var(--primary);
        border-bottom: 2px solid var(--primary);
    }
}
/* --- Video Preview --- */
.video-preview-wrapper {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.video-preview {
    max-width: 800px;
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.video-preview:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.video-preview img {
    width: 100%;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.4);
    animation: videoPulse 2s infinite;
}

@keyframes videoPulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(230, 126, 34, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 126, 34, 0); }
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
    border: 3px solid rgba(255,255,255,0.1);
    touch-action: pan-y;
}

.video-container {
    width: 80vw;
    height: 45vw;
    max-width: 1100px;
    max-height: 618px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 45px;
    cursor: pointer;
    z-index: 3100;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.close-lightbox:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 3100;
}

.lightbox-nav:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.gallery-overlay::before {
    content: '🍕';
    font-size: 2.5rem;
}

@media (max-width: 1024px) {
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

@media (max-width: 768px) {
    .lightbox-nav {
        display: flex !important;
        width: 44px;
        height: 44px;
        font-size: 18px;
        background: rgba(0,0,0,0.45);
        border: 1px solid rgba(255,255,255,0.18);
    }
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
    .video-container { width: 95vw; height: 53vw; }
    .close-lightbox { top: 20px; right: 20px; width: 45px; height: 45px; font-size: 30px; }
}
