/* ===== O'film Route - Cinematic WOW Redesign ===== */

:root {
    --navy-dark: #0A1628;
    --navy: #0F1C2E;
    --navy-light: #1A2A42;

    --turquoise: #00CED1;
    --turquoise-light: #40E0D0;
    --turquoise-dark: #008B8B;

    --amber: #FF6B35;
    --amber-light: #FF8C5A;
    --amber-dark: #E55A2B;

    --burgundy: #8B0000;
    --burgundy-light: #A52A2A;

    --gold: #D4AF37;
    --gold-light: #E8C547;
    --gold-dark: #B8960C;

    --cream: #F5F3EF;
    --gray-300: #B0B8C4;
    --gray-400: #8892A0;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    /* scroll-behavior removed for Lenis */
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

body {
    font-family: var(--font-body);
    background: var(--navy-dark);
    color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--turquoise);
    color: var(--navy-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

/* ===== Custom Cursor ===== */
@media (hover: hover) and (pointer: fine) {
    .custom-cursor-dot {
        position: fixed;
        top: 0;
        left: 0;
        width: 8px;
        height: 8px;
        background: #fff;
        border-radius: 50%;
        pointer-events: none;
        z-index: 10000;
        transition: width 0.2s, height 0.2s, margin 0.2s, background 0.2s;
        will-change: transform;
        opacity: 0;
    }

    .custom-cursor-dot.active {
        opacity: 1;
    }

    .custom-cursor-ring {
        position: fixed;
        top: 0;
        left: 0;
        width: 40px;
        height: 40px;
        border: 1.5px solid rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transition: width 0.3s, height 0.3s, margin 0.3s, border-color 0.3s, opacity 0.3s;
        will-change: transform;
        opacity: 0;
    }

    .custom-cursor-ring.active {
        opacity: 0.5;
    }

    .custom-cursor-dot.hover {
        width: 16px;
        height: 16px;
        margin: -4px 0 0 -4px;
        background: var(--turquoise);
    }

    .custom-cursor-ring.hover {
        width: 60px;
        height: 60px;
        margin: -10px 0 0 -10px;
        border-color: var(--turquoise);
        opacity: 0.8 !important;
    }

    body {
        cursor: none;
    }
    a, button, .film-card, .filter-btn, .thumbnail {
        cursor: none;
    }
}

@media (hover: none), (pointer: coarse) {
    .custom-cursor-dot,
    .custom-cursor-ring {
        display: none !important;
    }
}

/* ===== Particles ===== */
#tsparticles {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(20px) saturate(125%);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 206, 209, 0.1);
    transition: all 0.4s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 150px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 120px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-menu a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-300);
    position: relative;
    white-space: nowrap;
}

.nav-menu a:not(.nav-instagram)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--turquoise), var(--amber));
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-menu a:not(.nav-instagram):hover {
    color: var(--cream);
}

.nav-menu a:not(.nav-instagram):hover::after {
    width: 100%;
}

.nav-menu a:not(.nav-instagram).active {
    color: var(--turquoise);
}

.nav-menu a:not(.nav-instagram).active::after {
    width: 100%;
    background: var(--turquoise);
}

.nav-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--gray-600);
    border-radius: 50%;
    color: var(--gray-400);
}

.nav-instagram:hover {
    border-color: var(--turquoise);
    color: var(--turquoise);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 206, 209, 0.3);
}

/* Sound Toggle */
.sound-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--gray-600);
    border-radius: 50%;
    color: var(--gray-400);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.sound-toggle:hover {
    border-color: var(--turquoise);
    color: var(--turquoise);
    box-shadow: 0 0 20px rgba(0, 206, 209, 0.3);
}

.sound-toggle.active {
    border-color: var(--turquoise);
    color: var(--turquoise);
    background: rgba(0, 206, 209, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 180px;
    padding-bottom: 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    will-change: transform;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: saturate(0.6) brightness(0.5);
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 206, 209, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(139, 0, 0, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 45%),
        linear-gradient(180deg,
            transparent 0%,
            rgba(10, 22, 40, 0.5) 60%,
            rgba(10, 22, 40, 0.95) 100%
        );
    z-index: 1;
}

/* Lens Flares */
.gradient-overlay::before,
.gradient-overlay::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: lensFlare 10s ease-in-out infinite alternate;
}

.gradient-overlay::before {
    top: 10%;
    left: 15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--turquoise) 0%, transparent 70%);
}

.gradient-overlay::after {
    bottom: 15%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
    animation-delay: 2s;
}

@keyframes lensFlare {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.film-grain {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
    animation: grainMove 0.3s steps(1) infinite;
    z-index: 2;
}

@keyframes grainMove {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-1%, -1%); }
    20% { transform: translate(1%, 1%); }
    30% { transform: translate(-1%, 1%); }
    40% { transform: translate(1%, -1%); }
    50% { transform: translate(-1%, 0); }
    60% { transform: translate(1%, 0); }
    70% { transform: translate(0, -1%); }
    80% { transform: translate(0, 1%); }
    90% { transform: translate(-1%, -1%); }
}

.film-strip-left,
.film-strip-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0px,
            transparent 8px,
            rgba(0, 206, 209, 0.12) 8px,
            rgba(0, 206, 209, 0.12) 12px,
            transparent 12px,
            transparent 20px
        );
    opacity: 0.6;
    box-shadow: inset 0 0 20px rgba(0, 206, 209, 0.2);
    z-index: 3;
}

.film-strip-left::before,
.film-strip-right::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 15px,
        rgba(0, 206, 209, 0.3) 15px,
        rgba(0, 206, 209, 0.3) 20px
    );
}

.film-strip-left {
    left: 2%;
    animation: filmMove 20s linear infinite;
}

.film-strip-right {
    right: 2%;
    animation: filmMove 28s linear infinite reverse;
}

@keyframes filmMove {
    from { transform: translateY(0); }
    to { transform: translateY(-200px); }
}

.hero-content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    max-width: 900px;
    will-change: transform, opacity;
}

.hero-title {
    margin-bottom: 2rem;
    letter-spacing: 0.04em;
}

.title-line {
    display: block;
    font-size: clamp(3.2rem, 8vw, 6.5rem);
    font-weight: 400;
    color: var(--cream);
    overflow: visible;
    line-height: 1.1;
}

/* Split text chars - initial hidden state */
.title-line .char {
    display: inline-block;
    opacity: 0;
    transform: rotateX(90deg);
    transform-origin: bottom;
}

.title-line.accent {
    background: linear-gradient(90deg, var(--turquoise-light), var(--turquoise));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line.accent .char {
    background: linear-gradient(90deg, var(--turquoise-light), var(--turquoise));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: var(--gray-300);
    max-width: 650px;
    margin: 0 auto 3.5rem;
    opacity: 0;
    transform: translateY(20px);
    letter-spacing: 0.02em;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--turquoise), var(--turquoise-dark), var(--turquoise));
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: var(--navy-dark);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-position: 100% 50%;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 206, 209, 0.4);
}

.btn-primary:active,
.btn-outline:active,
.btn-show-more:active,
.filter-btn:active,
.content-tab:active {
    transform: scale(0.97);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--cream);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-outline:hover {
    border-color: var(--amber);
    color: var(--amber);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.btn-outline svg {
    width: 18px;
    height: 18px;
}

/* Button Ripple */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s, opacity 0.6s;
    opacity: 0;
    pointer-events: none;
}

.btn-ripple:active::after {
    width: 300px;
    height: 300px;
    opacity: 1;
    transition: 0s;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    opacity: 0;
    transform: translateY(20px);
}

.stat {
    text-align: center;
    min-width: 100px;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    white-space: nowrap;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--turquoise), transparent);
    opacity: 0.5;
}

.scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-500);
    z-index: 4;
}

.scroll-hint span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--turquoise), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== Section Styling ===== */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--turquoise);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--cream);
    margin-bottom: 1rem;
}

/* Split text in section titles */
.section-title .char {
    display: inline-block;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-400);
    font-weight: 300;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* ===== About Section ===== */
.about {
    padding: 8rem 0;
    background: var(--navy);
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-tag {
    display: block;
}

.about-content .lead {
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-content p {
    color: var(--gray-400);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.about-content strong {
    color: var(--turquoise);
    font-weight: 600;
}

.about-content blockquote {
    margin: 2.5rem 0;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.08), rgba(255, 107, 53, 0.04));
    border-left: 3px solid;
    border-image: linear-gradient(to bottom, var(--turquoise), var(--amber)) 1;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--cream);
    line-height: 1.8;
    clip-path: inset(0 100% 0 0);
}

.about-content blockquote.revealed {
    clip-path: inset(0 0% 0 0);
    transition: clip-path 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-goals {
    background: var(--navy-light);
    padding: 2.5rem;
    border: 1px solid rgba(0, 206, 209, 0.15);
    border-radius: 4px;
}

.about-goals h3 {
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 206, 209, 0.2);
}

.goal-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.goal-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    color: var(--turquoise);
}

.goal-icon svg {
    width: 100%;
    height: 100%;
}

.goal-item span {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== Search Bar ===== */
.search-bar-wrapper {
    margin-bottom: 2rem;
    text-align: center;
}

.search-bar {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--navy-light);
    border: 1px solid rgba(0, 206, 209, 0.2);
    border-radius: 50px;
    width: 100%;
    max-width: 500px;
    transition: var(--transition);
}

.search-bar:focus-within {
    border-color: var(--turquoise);
    box-shadow: 0 0 20px rgba(0, 206, 209, 0.15);
}

.search-icon {
    color: var(--gray-500);
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.search-input::placeholder {
    color: var(--gray-500);
}

.search-clear {
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0 0.25rem;
}

.search-clear:hover {
    color: var(--turquoise);
}

.search-results-count {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--gray-500);
    min-height: 1.2rem;
}

/* ===== Films Section ===== */
.films {
    padding: 8rem 0;
    background: var(--navy-dark);
    position: relative;
    z-index: 2;
}

.films-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.show-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    position: relative;
    z-index: 5;
    clear: both;
}

.btn-show-more {
    padding: 0.9rem 2.5rem;
    background: transparent;
    border: 1px solid var(--turquoise);
    color: var(--turquoise);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-show-more:hover {
    background: var(--turquoise);
    color: var(--navy-dark);
}

.film-card {
    position: relative;
    background: var(--navy);
    border: 1px solid rgba(0, 206, 209, 0.08);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.3s ease;
    border-radius: 4px;
}

.film-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 206, 209, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.film-card:hover::before {
    left: 100%;
}

.film-card:hover {
    border-color: rgba(0, 206, 209, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 206, 209, 0.15);
}

.film-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    background: var(--navy-dark);
    overflow: hidden;
    flex-shrink: 0;
}

.film-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.film-card:hover .film-card-image img {
    transform: scale(1.08);
    filter: brightness(1.1) saturate(1.2);
}

.film-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.film-card:hover .film-card-overlay {
    opacity: 1;
}

.view-gallery {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--turquoise);
    color: var(--navy-dark);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.film-card:hover .view-gallery {
    transform: translateY(0);
    opacity: 1;
}

.view-gallery svg {
    width: 14px;
    height: 14px;
}

.film-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 1rem 0.75rem;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.5) 60%, transparent 100%);
    z-index: 3;
    text-align: center;
    pointer-events: none;
}

.film-card-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--cream);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Film card hidden state for search/filter */
.film-card.hidden {
    display: none;
}


/* ===== Partners Section ===== */
.partners {
    padding: 6rem 0;
    background: var(--navy);
    position: relative;
    z-index: 2;
}

.partners-grid {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-item {
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 206, 209, 0.15);
    border-radius: 4px;
    transition: var(--transition);
    backdrop-filter: blur(4px);
    flex-shrink: 0;
}

.partner-item:hover {
    border-color: var(--turquoise);
    background: rgba(0, 206, 209, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.partner-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

/* ===== Footer ===== */
.footer {
    padding: 4rem 0 2rem;
    background: var(--navy-dark);
    border-top: 1px solid rgba(0, 206, 209, 0.1);
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 206, 209, 0.1);
}

.footer-logo {
    height: 120px;
}

.footer-brand p {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--gray-500);
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--gray-400);
    letter-spacing: 0.05em;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--turquoise);
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-links a:hover {
    color: var(--turquoise);
}

.footer-links a:hover::after {
    width: 100%;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--gray-700);
    border-radius: 4px;
    color: var(--gray-400);
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-btn:hover {
    border-color: var(--turquoise);
    color: var(--turquoise);
    box-shadow: 0 0 20px rgba(0, 206, 209, 0.2);
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ===== Detail Modal ===== */
.detail-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    overflow-y: auto;
}

.detail-modal.active {
    display: block;
    animation: modalOpen 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.detail-modal.closing {
    animation: modalClose 0.3s ease forwards;
}

@keyframes modalOpen {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes modalClose {
    from { opacity: 1; }
    to { opacity: 0; }
}

.detail-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    background: var(--navy-dark);
    border: 1px solid var(--gray-700);
    border-radius: 50%;
    color: var(--cream);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2010;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.detail-close:hover {
    background: var(--turquoise);
    border-color: var(--turquoise);
    color: var(--navy-dark);
}

.detail-body {
    display: grid;
    grid-template-columns: 1fr 380px;
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
}

/* Gallery Side */
.detail-gallery {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    border-right: 1px solid rgba(0, 206, 209, 0.1);
}

.gallery-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 0;
    overflow: hidden;
    padding: 1rem;
}

.gallery-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-img-wrap img {
    max-width: 90%;
    max-height: 75vh;
    object-fit: contain;
    display: block;
    border-radius: 4px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-img-wrap img.slide-out-left {
    opacity: 0;
    transform: translateX(-40px);
}

.gallery-img-wrap img.slide-out-right {
    opacity: 0;
    transform: translateX(40px);
}

.gallery-img-wrap img.slide-in {
    opacity: 1;
    transform: translateX(0);
}

.gallery-caption {
    display: none;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(10, 22, 40, 0.8);
    border: 1px solid var(--gray-700);
    border-radius: 50%;
    color: var(--turquoise);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-nav:hover {
    background: var(--turquoise);
    color: var(--navy-dark);
    border-color: var(--turquoise);
}

.gallery-prev { left: 0.5rem; }
.gallery-next { right: 0.5rem; }

/* Gallery Thumbs */
.gallery-thumbs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(0, 206, 209, 0.1);
    flex-shrink: 0;
    overflow-x: auto;
}

.gallery-thumbs img {
    width: 80px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    transition: var(--transition);
    flex-shrink: 0;
}

.gallery-thumbs img:hover {
    opacity: 0.8;
}

.gallery-thumbs img.active {
    opacity: 1;
    border-color: var(--turquoise);
    transform: scale(1.1);
}

.gallery-counter {
    padding: 0.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
    flex-shrink: 0;
}

.gallery-counter span:first-child {
    color: var(--turquoise);
    font-weight: 600;
}

/* Info Panel Side */
.detail-info {
    padding: 3rem 2rem;
    overflow-y: auto;
    max-height: 100vh;
    position: sticky;
    top: 0;
}

.detail-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.detail-meta {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.detail-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.detail-meta-item svg {
    color: var(--turquoise);
    flex-shrink: 0;
}

.detail-meta-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.detail-meta-value {
    display: block;
    font-size: 1rem;
    color: var(--cream);
    font-weight: 500;
}

.detail-divider {
    height: 1px;
    background: linear-gradient(to right, var(--turquoise), transparent);
    margin: 2rem 0;
    opacity: 0.3;
}

.detail-description h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 1rem;
}

.detail-description p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.8;
}

/* ===== Testimonials ===== */
.testimonials-section {
    padding: 6rem 0;
    background: var(--navy);
    position: relative;
    z-index: 2;
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 40px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 3rem;
    background: rgba(26, 42, 66, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 206, 209, 0.12);
    border-radius: 8px;
    text-align: center;
}

.testimonial-stars {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.testimonial-author strong {
    color: var(--turquoise);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--navy-dark);
    border: 1px solid var(--turquoise);
    color: var(--turquoise);
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.slider-nav:hover {
    background: var(--turquoise);
    color: var(--navy-dark);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev { left: 10px; }
.slider-nav.next { right: 10px; }

/* ===== Loading Screen ===== */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.film-reel {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.reel {
    width: 80px;
    height: 80px;
    border: 4px solid var(--turquoise);
    border-radius: 50%;
    position: relative;
    animation: spin 2s linear infinite;
}

.reel::before,
.reel::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--turquoise);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.reel::after {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--amber);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--turquoise);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: var(--navy-light);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--turquoise), var(--amber));
    animation: loadProgress 2s ease-in-out infinite;
}

@keyframes loadProgress {
    0%, 100% { width: 0%; }
    50% { width: 100%; }
}

/* ===== Scroll Progress Bar ===== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent;
    z-index: 1001;
}

.scroll-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--turquoise), var(--amber), var(--gold));
    width: 0%;
    box-shadow: 0 0 6px var(--turquoise);
    will-change: width;
}

/* ===== Typewriter ===== */
.typewriter {
    display: inline-block;
    border-right: 2px solid var(--turquoise);
    padding-right: 5px;
}

.typewriter.finished {
    border-right: none;
}

/* ===== Content Tabs ===== */
.content-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    position: relative;
}

.content-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    background: var(--navy-light);
    border: 1px solid rgba(0, 206, 209, 0.15);
    color: var(--gray-300);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 6px;
    font-family: var(--font-body);
}

.content-tab svg {
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.content-tab:hover {
    border-color: var(--turquoise);
    color: var(--turquoise);
    transform: translateY(-2px);
}

.content-tab:hover svg {
    opacity: 1;
}

.content-tab.active {
    background: linear-gradient(135deg, var(--turquoise), var(--turquoise-dark));
    border-color: var(--turquoise);
    color: var(--navy-dark);
    font-weight: 600;
}

.content-tab.active svg {
    opacity: 1;
}

.tab-content {
    display: none;
    animation: tabFadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

.tab-content.tab-exit {
    animation: tabFadeOut 0.2s ease forwards;
}

@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes tabFadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
}

.tab-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.tab-section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.tab-section-desc {
    font-size: 0.95rem;
    color: var(--gray-500);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--gray-400);
}

.empty-state svg {
    color: rgba(0, 206, 209, 0.25);
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.empty-state p {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .content-tabs {
        gap: 0.4rem;
    }
    .content-tab {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    .content-tab svg {
        width: 16px;
        height: 16px;
    }
}

/* ===== Filters ===== */
.filters {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--navy-light);
    border: 1px solid rgba(0, 206, 209, 0.2);
    color: var(--gray-300);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
    font-family: var(--font-body);
}

.filter-btn:hover {
    border-color: var(--turquoise);
    color: var(--turquoise);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--turquoise), var(--turquoise-dark));
    border-color: var(--turquoise);
    color: var(--navy-dark);
    font-weight: 600;
}

/* ===== Before/After Slider Component ===== */
.before-after-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(0, 206, 209, 0.15);
    user-select: none;
}

.before-after-container img {
    width: 100%;
    display: block;
}

.before-after-before {
    position: absolute;
    inset: 0;
    overflow: hidden;
    width: 50%;
}

.before-after-before img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--turquoise);
    cursor: ew-resize;
    z-index: 5;
    box-shadow: 0 0 10px rgba(0, 206, 209, 0.5);
}

.before-after-line::before,
.before-after-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    background: var(--turquoise);
    border-radius: 50%;
    transform: translateY(-50%);
}

.before-after-line::before {
    left: -28px;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.before-after-line::after {
    right: -28px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.before-after-label {
    position: absolute;
    top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(10, 22, 40, 0.8);
    color: var(--cream);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 4;
}

.before-after-label.label-before {
    left: 1rem;
}

.before-after-label.label-after {
    right: 1rem;
}

/* ===== Section Dividers ===== */
.about::after,
.films::after,
.testimonials-section::after {
    content: '';
    display: block;
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--turquoise), transparent);
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 20%;
    opacity: 0.3;
}

/* ===== Skeleton Cards ===== */
.skeleton-card {
    background: var(--navy);
    border: 1px solid rgba(0, 206, 209, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.skeleton-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: linear-gradient(90deg, var(--navy-light) 25%, rgba(26, 42, 66, 0.6) 50%, var(--navy-light) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== Loading Percentage ===== */
.loading-percent {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 1rem;
    letter-spacing: 0.1em;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-stats {
        gap: 2.5rem;
    }

    .stat-num {
        font-size: 2.2rem;
    }

    .detail-body {
        grid-template-columns: 1fr;
    }

    .detail-gallery {
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid rgba(0, 206, 209, 0.1);
    }

    .detail-info {
        position: static;
        max-height: none;
        padding: 2rem 1.5rem 3rem;
    }

    .gallery-img-wrap img {
        max-height: 50vh;
    }
}

@media (max-width: 768px) {
    .nav-logo img {
        height: 120px;
    }

    .navbar.scrolled .nav-logo img {
        height: 90px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(15, 28, 46, 0.85);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        border-left: 1px solid rgba(0, 206, 209, 0.2);
    }

    .nav-menu li {
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.35s; }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }

    .stat {
        min-width: 80px;
    }

    .film-strip-left,
    .film-strip-right {
        display: none;
    }

    .films-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .about-goals {
        padding: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-nav.prev { left: 10px; }
    .slider-nav.next { right: 10px; }

    .search-bar {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .films-grid {
        grid-template-columns: 1fr;
    }

    .detail-title {
        font-size: 1.6rem;
    }

    .gallery-thumbs {
        padding: 0.5rem 1rem;
    }

    .gallery-thumbs img {
        width: 60px;
        height: 40px;
    }

    .gallery-nav {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}
