/* ===== CSS VARIABLES ===== */
:root {
    --color-bg: #0a0a0a;
    --color-surface: #151515;
    --color-text: #f4f4f4;
    --color-text-muted: #9a9a9a;
    --color-accent: #ff4444;
    --color-accent-2: #00d9ff;
    --color-accent-3: #96e1eee3;
    
    --font-display: 'Archivo', sans-serif;
    --font-body: 'Crimson Pro', serif;
    
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);

    --transition-speed: 0.6s;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    
    --spacing-unit: 8px;
    --max-width: 1400px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.logo-svg {
    height: 90px;
    width: auto;
    fill: currentColor;  /* Inherits text color */
    transition: all 0.3s ease;
}

.logo-svg:hover {
    /* fill: #692e2e;  Change color on hover! */
    transform: scale(1.05);
}

/* Change color based on page */
/*.nav-logo a:hover .logo-svg {
    fill: var(--color-accent);
}*/

/* Smaller on mobile */
@media (max-width: 768px) {
    .logo2 {
        height: 35px;
    }
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 4);
    background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%);
    backdrop-filter: blur(10px);
    animation: navSlideDown 0.8s var(--ease-out-expo);
}

@keyframes navSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-logo .logo-link {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-logo .logo-link:hover {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    gap: calc(var(--spacing-unit) * 5);
}

.nav-links a {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.4s var(--ease-out-expo);
}

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

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

.nav-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

#logo {
  grid-column: 2/3;
  font-size: 24px;
}

/* ===== PASSWORD MODAL ===== */

/* Password Modal */
.password-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.password-modal-content {
    background: var(--color-surface);
    margin: 15% auto;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.password-modal-content h2 {
    font-family: var(--font-display);
    color: var(--color-text);
    margin-bottom: 10px;
}

.password-modal-content p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.password-modal-content input {
    width: 100%;
    padding: 12px 20px;
    background: var(--color-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--color-text);
    font-size: 16px;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.password-modal-content input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.password-modal-content button {
    width: 100%;
    padding: 14px;
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.password-modal-content button:hover {
    background: #ff6666;
    transform: translateY(-2px);
}

.modal-close2 {
    float: right;
    font-size: 28px;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 20px;
}

.modal-close2:hover {
    color: var(--color-text);
}

.error-msg {
    color: var(--color-accent);
    font-size: 14px;
    margin-top: 10px;
    font-family: var(--font-display);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 68, 68, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
        var(--color-bg);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.02) 2px, rgba(255,255,255,0.02) 4px);
    pointer-events: none;
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.title-line {
    display: block;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1.2s var(--transition-smooth) forwards;
}

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

/*.title-line:first-child {
    animation: titleSlideUp 1.2s var(--ease-out-expo) 0.2s both;
}

.title-line:last-child {
    animation: titleSlideUp 1.2s var(--ease-out-expo) 0.4s both;
}*/

@keyframes titleSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-subtitle {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    animation: fadeIn 1s ease 0.8s both;
}

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

.scroll-indicator {
    position: absolute;
    bottom: calc(var(--spacing-unit) * 6);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    animation: fadeIn 1s ease 1.2s both;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, var(--color-accent) 100%);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* ===== SECTIONS ===== */
.section {
    min-height: 100vh;
    padding: calc(var(--spacing-unit) * 15) calc(var(--spacing-unit) * 4);
    position: relative;
}

.section-header {
    max-width: var(--max-width);
    margin: 0 auto calc(var(--spacing-unit) * 10);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(3rem, 7vw, 5rem);
    letter-spacing: -0.01em;
    margin-bottom: calc(var(--spacing-unit) * 2);
    opacity: 0;
    transform: translateY(30px);
    animation: sectionTitleReveal 1s var(--ease-out-expo) forwards;
    animation-play-state: paused;
}

.section.visible .section-title {
    animation-play-state: running;
}

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

.section-description {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.hero video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-hero-subtitle a:hover{
    color: var(--color-accent);
}

/* section{
  display: flex;
  height: 80vh;
  justify-content: center;
  align-items: center;
}

.hero{
  height: 100%;
  width: 100%;
  position: relative;
}

.hero video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .headline {
  position: absolute;
  top: 20%;
  left: 10%;
  font-size: 100px;
  transform: translate(-20%, -70%);
  color: white;
  z-index: 3;
} */

.hero::after{
  content: "";
  background: black;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  opacity: 0;
  top: 0;
}

.logo2 {
  width: 110px;
  position: fixed;
  right: 90%;
  margin-top: 1px;
}

/* ===== FILMS SECTION ===== */
.films-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    gap: calc(var(--spacing-unit) * 12);
}

 .film-version {
    position: relative;
    display: grid;
    /*grid-template-columns: 1.5fr 1fr;*/
    gap: calc(var(--spacing-unit) * 6);
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    animation: itemReveal 1s var(--ease-out-expo) forwards;
    animation-play-state: paused;
    z-index: 1;
} 

.film-item {
    position: relative;
    display: grid;
    /*grid-template-columns: 1.5fr 1fr;*/
    gap: calc(var(--spacing-unit) * 6);
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    animation: itemReveal 1s var(--ease-out-expo) forwards;
    animation-play-state: paused;
    z-index: 1;
    /* pointer-events: none; */
}

.section.visible .film-item {
    animation-play-state: running;
}

.film-item:nth-child(1) { animation-delay: 0.1s; }
.film-item:nth-child(2) { animation-delay: 0.2s; }
.film-item:nth-child(3) { animation-delay: 0.3s; }

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

/* ======= FILM SECTION ======== */

.film p {
    cursor: pointer;
    pointer-events: auto;
}

.film p:hover {
    color: var(--color-accent);
    transform: scale (1.5);
}

.film-media {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 2;
}

.film-placeholder {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: var(--color-surface);
    overflow: hidden;
}

.film-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.film-media:hover .film-placeholder img {
    transform: scale(1.05);
}

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

.film-item:hover .play-button-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--color-text);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    padding-left: 6px;
    transition: all var(--transition-speed);
}

.play-button-overlay:hover .play-button {
    transform: scale(1.1);
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.filmv {
    color: var(--color-accent);
    transition: all 0.3s ease;
    margin-left: 25px;
    margin-top: -100px;
}

.filmv:hover {
    color: #ff6666;
    transform: translateX(-5px);
}


/*.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 68, 68, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: none;
}*/

/*.play-button svg {
    width: 30px;
    height: 30px;
    transform: translateX(2px);
}*/

/*.film-media:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--color-accent);
}*/

.film-info {
    position: relative;
    z-index: 10;
    padding: calc(var(--spacing-unit) * 3);
    pointer-events: none;
}


.disable-hover {
    pointer-events: none;
}

.film-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.film-meta {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.film-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/*.film-version {
    color: var(--color-accent-3);
    font-size: clamp(1rem, 3vw, 1.8rem);
    position: relative;
    padding-left: 26px;
    display: flex;
    margin-top: -80px;
    gap: 6px;
}*/

.film-version p {
    cursor: pointer;
    pointer-events: auto;
}

.film-version p:hover {
    color: var(--color-accent);
    transform: scale (1.5);
}

.film-arch {
    font-size: 3.0rem;
    line-height: 0%;
    position: relative;
    padding-left: 20px;
    display: flex;
    margin-top: 1px;
    gap: 10px;
}

.film-arch p {
    cursor: pointer;
    pointer-events: auto;
}

.film-arch p:hover {
    color: var(--color-accent);
}


/* ===== PHOTOGRAPHY SECTION ===== */
.photo-gallery {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
}

.photo-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.95);
    animation: photoReveal 0.8s var(--ease-out-expo) forwards;
    animation-play-state: paused;
}

.section.visible .photo-item {
    animation-play-state: running;
}

.photo-item:nth-child(1) { animation-delay: 0.1s; }
.photo-item:nth-child(2) { animation-delay: 0.15s; }
.photo-item:nth-child(3) { animation-delay: 0.2s; }
.photo-item:nth-child(4) { animation-delay: 0.25s; }
.photo-item:nth-child(5) { animation-delay: 0.3s; }
.photo-item:nth-child(6) { animation-delay: 0.35s; }

@keyframes photoReveal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.photo-wrapper {
    position: relative;
    padding-top: 75%;
    background: var(--color-surface);
    overflow: hidden;
}

.photo-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

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

.photo-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.photo-item:hover::after {
    opacity: 1;
}

/* ===== WRITING SECTION ===== */
.writing-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: calc(var(--spacing-unit) * 8);
}

.writing-item {
    border-top: 1px solid rgba(244, 244, 244, 0.1);
    padding-top: calc(var(--spacing-unit) * 6);
    opacity: 0;
    transform: translateY(30px);
    animation: itemReveal 1s var(--ease-out-expo) forwards;
    animation-play-state: paused;
}

.section.visible .writing-item {
    animation-play-state: running;
}

.writing-item:nth-child(1) { animation-delay: 0.1s; }
.writing-item:nth-child(2) { animation-delay: 0.2s; }
.writing-item:nth-child(3) { animation-delay: 0.3s; }

.writing-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
    transition: color 0.3s ease;
}

.writing-item:hover .writing-title {
    color: var(--color-text);
}

.writing-meta {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.writing-excerpt {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.writing-link {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.writing-link:hover {
    transform: translateX(5px);
}

/* ===== ABOUT SECTION ===== */
.about-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: calc(var(--spacing-unit) * 10);
    align-items: start;
}

.about-text {
    opacity: 0;
    transform: translateY(30px);
    animation: itemReveal 1s var(--ease-out-expo) forwards;
    animation-play-state: paused;
}

.secret-link {
    text-align: left;
    color: black;
}

.section.visible .about-text {
    animation-play-state: running;
}

.about-bio {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: calc(var(--spacing-unit) * 8);
}

.about-bio p {
    margin-bottom: calc(var(--spacing-unit) * 3);
    color: var(--color-text-muted);
}

.about-contact h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.contact-link {
    display: inline-block;
    font-size: 1.3rem;
    color: var(--color-accent);
    margin-bottom: calc(var(--spacing-unit) * 4);
    transition: transform 0.3s ease;
}

.contact-link:hover {
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: calc(var(--spacing-unit) * 4);
}

.social-links a {
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.social-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.4s var(--ease-out-expo);
}

.social-links a:hover {
    color: var(--color-accent);
}

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

.about-image {
    position: relative;
    opacity: 0;
    transform: scale(0.95);
    animation: photoReveal 1s var(--ease-out-expo) 0.2s forwards;
    animation-play-state: paused;
}

.section.visible .about-image {
    animation-play-state: running;
}

.about-image img {
    width: 100%;
    height: auto;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.6s ease;
}

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

/* ===== FOOTER ===== */
.footer {
    padding: calc(var(--spacing-unit) * 8) calc(var(--spacing-unit) * 4);
    text-align: center;
    border-top: 1px solid rgba(244, 244, 244, 0.1);
}

.footer p {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

/* ===== MODALS & LIGHTBOX ===== */
.film-modal,
.photo-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.film-modal.active,
.photo-lightbox.active {
    display: flex;
}

.modal-overlay,
.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal-close,
.lightbox-close {
    position: absolute;
    top: calc(var(--spacing-unit) * 4);
    right: calc(var(--spacing-unit) * 4);
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2002;
    transition: color 0.3s ease, transform 0.3s ease;
}

.modal-close:hover,
.lightbox-close:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

.modal-content {
    position: relative;
    z-index: 2001;
    width: 90%;
    max-width: 1200px;
    animation: scaleIn 0.4s var(--ease-out-expo);
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-video {
    position: relative;
    padding-top: 56.25%;
    background: #000;
}

.modal-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.lightbox-content {
    position: relative;
    z-index: 2001;
    max-width: 90vw;
    max-height: 90vh;
    animation: scaleIn 0.4s var(--ease-out-expo);
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2002;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 60px;
    height: 60px;
    color: var(--color-text);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: transparent(10px);
}

.lightbox-prev {
    left: calc(var(--spacing-unit) * 4);
}

.lightbox-next {
    right: calc(var(--spacing-unit) * 4);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}


/* ===== HIDDEN LINK ===== */



/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .film-item {
        grid-template-columns: 1fr;
    }
     
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: calc(var(--spacing-unit) * 4);
        transition: right 0.4s var(--ease-out-expo);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }
    
    .nav-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }
    
    .section {
        padding: calc(var(--spacing-unit) * 10) calc(var(--spacing-unit) * 3);
    }
    
    .hero-title {
        font-size: clamp(3rem, 15vw, 6rem);
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: calc(var(--spacing-unit) * 2);
    }
    
    .lightbox-next {
        right: calc(var(--spacing-unit) * 2);
    }

    body {
        padding-top: 45px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 2px solid var(--color-text);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.5rem;
        padding-left: 6px;
}

.play-button-overlay {
    opacity: 100;
}

    .video-hero-subtitle {
        display: flex;
        flex-direction: column;
    }
}