/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.3rem); }
p { font-size: clamp(1rem, 2vw, 1.1rem); margin-bottom: 1rem; }

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}
/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Source SVG is black; site is dark — invert so it renders white. */
.logo {
    filter: invert(1);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link-tickets {
    border: 1px solid #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
}

.nav-link-tickets::after {
    display: none;
}

.nav-icons {
    display: flex;
    gap: 1rem;
}

.icon-link {
    display: block;
    transition: transform 0.3s ease;
}

.icon-link:hover {
    transform: scale(1.1);
}

.icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 4px 24px;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
    min-width: 120px;
    text-align: center;
}

.btn-primary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-primary:hover {
    background-color: #ffffff;
    color: #000000;
}

.btn:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-image,
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 2rem;
    animation: fadeIn 1s ease-out;
}

.hero-page {
    height: 100vh;
}

/* ===== SECTIONS ===== */
section {
    padding: 6rem 0 4rem;
    animation: fadeIn 0.8s ease-out;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* ===== PORTRAIT IMAGES ===== */
.portrait-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    aspect-ratio: 3/4;
    width: 100%;
}

.portrait-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portrait-image:hover img {
    transform: scale(1.05);
}

/* ===== CARD COMPONENTS ===== */
.card-container {
    max-width: 800px;
    margin: 0 auto;
}
.card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.card-info {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem;
    display: flex;
    align-items: flex-end;
}

/* ===== LAYOUTS ===== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ml-auto {
    margin-left: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ===== ABOUT INFO SECTION ===== */
.about-info {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.about-content {
    text-align: center;
    max-width: 600px;
    padding: 0 2rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: fadeInUp 1s ease-out;
}

.about-logo .logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.footer-link:hover {
    color: #ffffff;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* ===== PAGE-SPECIFIC STYLES ===== */

/* FAQ Page */

.faq-container {
    max-width: 800px;
    margin: 64px auto;
}

.faq-item {
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: #ffffff;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 300;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question:focus {
    outline: 2px solid #ffffff;
    outline-offset: -2px;
}

.faq-text {
    flex: 1;
    margin-right: 1rem;
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Contact Section */
.contact-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0;
}
/* ===== VIDEO PLAYER MODAL ===== */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: 800px;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #111;
    border-bottom: 1px solid #333;
}

.video-modal-title {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
}

.video-modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.video-modal-close:hover {
    background-color: #333;
}

.video-modal-body {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-modal-body video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        align-items: center;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        align-items: center;
        width: 100%;
    }
    
    .nav-link-tickets {
        margin-top: 0.5rem;
    }

    .nav-icons {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero adjustments for mobile */
    .hero {
        height: 80vh;
    }

    .hero-page {
        height: 100vh;
    }

    .hero-content {
        padding-top: 4rem;
    }

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

    /* Grid adjustments for mobile */
    .grid-2,
    .grid-3,
    .grid-auto {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portrait-image {
        height: 250px;
    }
    
    /* Card info mobile centering */
    .card-info {
        align-items: center;
        text-align: center;
    }
    
    .card-info .text-right {
        text-align: center;
    }
    
    .card-info small,
    .card-info h3,
    .card-info p {
        text-align: center;
    }
    
    .card-info .btn {
        margin-left: auto;
        margin-right: auto;
    }
    
    .card-info .ml-auto {
        margin-left: auto;
        margin-right: auto;
    }

    /* Footer adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .contact-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
    }

    /* Video modal mobile */
    .video-modal-content {
        width: 95vw;
        height: 60vh;
        margin: 1rem;
    }
    
    .video-modal-header {
        padding: 0.75rem;
    }
    
    .video-modal-title {
        font-size: 1rem;
    }
    
    .video-modal-close {
        font-size: 1.5rem;
        width: 25px;
        height: 25px;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .grid-auto {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .portrait-image {
        height: 350px;
    }
}

/* Large screens */
@media (min-width: 1025px) {
    .grid-auto {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}



/* ===== HERO TRIPTYCH ===== */
.hero-triptych {
    background:
        radial-gradient(ellipse at 50% 30%, rgba(255, 80, 40, 0.18), transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(60, 30, 120, 0.18), transparent 55%),
        #050505;
    overflow: hidden;
    padding: 6rem 2rem 4rem;
    flex-direction: column;
    gap: 2.5rem;
}

.triptych {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    align-items: center;
    gap: clamp(12px, 2vw, 32px);
    width: 100%;
    max-width: 1400px;
    height: min(78vh, 720px);
    perspective: 1400px;
}

.triptych__tile {
    position: relative;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background-color: #0a0a0a;
    box-shadow:
        0 30px 80px -20px rgba(0, 0, 0, 0.75),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    animation: triptychRise 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
    will-change: transform, opacity;
    transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.5s ease;
}

.triptych__tile video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Subtle vignette over each clip so they read as composed tiles. */
.triptych__tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 55%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

/* Outer two tiles sit slightly lower so the center reads as the focal point. */
.triptych__tile--side {
    height: 88%;
    align-self: end;
    transform-origin: 50% 100%;
}

.triptych__tile--side:first-child {
    transform: translateY(40px) scale(0.96) rotate(-1.2deg);
    animation-name: triptychRiseLeft;
}

.triptych__tile--side:last-child {
    transform: translateY(40px) scale(0.96) rotate(1.2deg);
    animation-name: triptychRiseRight;
}

.triptych__tile--center {
    transform-origin: 50% 100%;
    box-shadow:
        0 40px 90px -20px rgba(0, 0, 0, 0.85),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 60px rgba(255, 90, 50, 0.25);
}

.triptych__tile:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 0 80px rgba(255, 120, 80, 0.35);
}

/* Stagger the entrance so the tiles cascade in. */
.triptych__tile:nth-child(1) { animation-delay: 0.05s; }
.triptych__tile:nth-child(2) { animation-delay: 0.2s; }
.triptych__tile:nth-child(3) { animation-delay: 0.35s; }

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

@keyframes triptychRiseLeft {
    to { opacity: 1; transform: translateY(0) scale(1) rotate(-1.2deg); }
}

@keyframes triptychRiseRight {
    to { opacity: 1; transform: translateY(0) scale(1) rotate(1.2deg); }
}

.hero-triptych .hero-buttons {
    position: relative;
    margin-top: 0;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-triptych {
        padding: 5rem 1rem 3rem;
    }
    .triptych {
        grid-template-columns: 0.7fr 1fr 0.7fr;
        gap: 8px;
        height: 65vh;
    }
    .triptych__tile--side:first-child,
    .triptych__tile--side:last-child {
        transform: translateY(20px) scale(0.94);
    }
    @keyframes triptychRiseLeft {
        to { opacity: 1; transform: translateY(0) scale(1) rotate(-0.6deg); }
    }
    @keyframes triptychRiseRight {
        to { opacity: 1; transform: translateY(0) scale(1) rotate(0.6deg); }
    }
}

/* ===== GALLERY ===== */
.gallery {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
    outline: none;
}

.gallery:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.gallery__stage,
.gallery__videoSlot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.gallery__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.gallery__media--video {
    object-fit: contain;
    background-color: #000;
}

/* Autoplay background videos: cover the area like an image. */
.gallery__media--bg {
    object-fit: cover;
    background-color: #000;
}

.gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease, background-color 0.25s ease;
    z-index: 3;
}

.gallery__nav svg {
    width: 22px;
    height: 22px;
}

.gallery__nav--prev { left: 12px; }
.gallery__nav--next { right: 12px; }

.gallery:hover .gallery__nav,
.gallery:focus-within .gallery__nav {
    opacity: 1;
}

.gallery__nav:hover {
    background-color: rgba(0, 0, 0, 0.45);
}

.gallery__dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 3;
    pointer-events: auto;
}

.gallery__dot {
    width: 6px;
    height: 6px;
    border: none;
    border-radius: 50%;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: width 0.2s ease, background-color 0.2s ease;
}

.gallery__dot.is-active {
    width: 18px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.95);
}

.gallery__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border: none;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
    z-index: 2;
}

.gallery__play svg {
    width: 28px;
    height: 28px;
    margin-left: 3px;
}

.gallery__play:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background-color: rgba(0, 0, 0, 0.75);
}

/* Aspect variants: only used when the gallery is NOT inside an explicit
   container that already controls its dimensions (e.g. .hero-background or
   .portrait-image). */
.gallery[data-aspect="landscape"] {
    aspect-ratio: 16 / 9;
    height: auto;
}

.gallery[data-aspect="portrait"] {
    aspect-ratio: 3 / 4;
    height: auto;
}

.gallery[data-aspect="square"] {
    aspect-ratio: 1 / 1;
    height: auto;
}

/* Touch viewports: chevrons always visible at lower opacity. */
@media (hover: none) {
    .gallery__nav {
        opacity: 0.7;
    }
}

/* Match the original hero/about brightness treatment when a gallery is used as a backdrop
   so overlaid copy stays legible. The chevrons + dots are still shown — user explicitly
   wants every placeholder to be browseable. */
.hero-background > .gallery .gallery__media {
    filter: brightness(0.7);
}

.about-background > .gallery .gallery__media {
    filter: brightness(0.6);
}

/* Background galleries keep their dots at the very bottom edge so they don't clash with hero copy. */
.hero-background > .gallery .gallery__dots,
.about-background > .gallery .gallery__dots {
    bottom: 16px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .footer,
    .nav-toggle,
    .video-modal {
        display: none;
    }
    
    body {
        background-color: white;
        color: black;
    }
}