html {
    scroll-behavior: smooth;
}
/* =========================
   RESET
========================= */

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

/* =========================
   BODY 
========================= */

body {
    margin: 0;
    background: #000000;
}
.background {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
      background: #000000;
}

/* blob base */
.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    mix-blend-mode: screen;
    filter: blur(60px); 
    opacity: 0.25;        
}
/* blob 1 */
.blob:nth-child(1) {
    background: radial-gradient(circle, rgba(255, 77, 109, 0.9), transparent 60%);
    top: 10%;
    left: 15%;
}
/* blob 2 */
.blob:nth-child(2) {
    background: radial-gradient(circle, rgba(76, 201, 240, 0.9), transparent 60%);
    top: 40%;
    left: 60%;
    animation-delay: -4s;
}
/* blob 3 */
.blob:nth-child(3) {
    background: radial-gradient(circle, rgba(181, 23, 255, 0.9), transparent 60%);
    top: 70%;
    left: 30%;
    animation-delay: -8s;
}

/* movement */
@keyframes float {
    0%   { transform: translate(0,0) scale(1); }
    50%  { transform: translate(80px,-60px) scale(1.2); }
    100% { transform: translate(0,0) scale(1); }
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.08);
    }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.2),
            rgba(0,0,0,0.7)
        );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-content h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(4rem, 10vw, 9rem);
    letter-spacing: 0.1em;
    font-weight: 300;
    margin-bottom: 1rem;
}

.hero-content p {
    max-width: 700px;
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.scroll-btn {
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 1rem 2rem;
    transition: 0.4s;
}

.scroll-btn:hover {
    background: rgba(255,255,255,0.15);
}

/* =========================
   NAV BAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    color: white;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,.45),
        rgba(0,0,0,0)
    );
}
.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a,
.logo {
    color: white;
    text-decoration: none;
    font: georgia;
    letter-spacing: 0.08em;
}

/* =========================
   REEL
========================= */
.reel-section {
	 margin-top: 6rem;
    margin-bottom: 1rem;
background: black;
    position: relative;
	   padding-top: 4rem;
    padding-bottom: 4rem;
}

/* NEW FLEX CONTAINER */
.reel-container {
    display: flex;
    align-items: center;   /* vertical alignment */
    justify-content: space-between;
    gap: 2rem;

    max-width: 1400px;
    margin: 0 auto;
}

/* TEXT SIDE */
.reel-header {
    flex: 1;
}

.reel-header h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-size: clamp(3rem, 6vw, 6rem);
    color: white;
    line-height: 1.1;
}

/* VIDEO SIDE */
.reel-video {
    flex: 1.5;
}

/* keep your existing styling but ensure full width */
.reel-video video {
    width: 100%;
    display: block;
    border-radius: 10px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.reel-section::before,
.reel-section::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: rgba(255,255,255,0.08);
}
.reel-section::before {
    top: 2rem;
}
.reel-section::after {
    bottom: 1rem;
}
.reel-divider-title {
	text-align: center;
	font-family: "Cormorant Garamond", serif;
	font-size: 3.5rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.7);
	margin: 0rem 0 10rem;
	opacity: 1;
	transform: translateY(30px);
	transition: opacity 1s ease, transform 1s ease;
}

/* =========================
   SELECTED WORKS
========================= */
.selected-work {
	 margin-top: 1.5rem;
    background: transparent;
    padding: 10rem 8vw;
}
.section-title {
    text-align: center;
    margin-bottom: 8rem;
}

.section-title h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(4rem, 8vw, 7rem);

    font-weight: 300;

    color: white;
}

.project {
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 2rem 5rem; /* row + column spacing */
    align-items: start;
    max-width: 1200px;
    margin: 0 auto 12rem;

}
.project.reverse .project-media {
    grid-column: 2;
}

.project.reverse .project-info {
    grid-column: 1;
}
.project-media {
    width: 100%;
  /*  aspect-ratio: 16 / 9; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.project-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}


/* =========================
   PROJECT INFO
========================= */

.project-info {
    color: white;
}
.project-info h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 1rem;
}
.project-info p:first-of-type {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.5;
    margin-bottom: 1.5rem;
}
.project-info p:last-of-type {
    line-height: 1.8;
    opacity: 0.8;
}

/* =========================
   ARCHIVE
========================= */

.film-archive {
    padding: 9rem 8vw;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.archive-header {
    text-align: center;
    margin-bottom: 5rem;
}
.archive-header h2 {
    font-family: "Cormorant Garamond", serif;
    color: white;
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 300;
}
.archive-header p {
    color: rgba(255,255,255,0.6);
    margin-top: 1rem;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 4rem;
}

.poster-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 1600px;
}

.poster {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 10px;
width: 260px;
    transition:
        transform 0.8s ease,
        opacity 0.8s ease;
    margin-left: -60px;
}

.poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.poster.active {
    width: 340px;

    opacity: 1;

    transform: scale(1);

    z-index: 10;
}

.poster-1 {
    width: 280px;

    opacity: .65;

    transform: scale(.9);

    z-index: 8;
}

.poster-2 {
    width: 240px;

    opacity: .35;

    transform: scale(.8);

    z-index: 6;
}

.poster-3 {
    width: 200px;

    opacity: .15;

    transform: scale(.7);

    z-index: 4;
}

.poster:hover {
    cursor: pointer;
}

.film-info {
    text-align: center;

    max-width: 700px;

    margin: 0 auto;

    color: white;
}

.film-info h3 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(2rem, 4vw, 3.5rem);

    font-weight: 300;

    margin-bottom: 1rem;
}

.film-meta {
    opacity: .5;

    letter-spacing: .15em;

    text-transform: uppercase;

    margin-bottom: 1rem;
}

.film-description {
    opacity: .8;

    line-height: 1.8;
}

.carousel-btn {
    background: none;

    border: none;

    color: rgba(255,255,255,.7);

    font-size: 3rem;

    cursor: pointer;

    z-index: 20;

    padding: 1rem;

    transition: .3s;
}
.carousel-btn:hover {
    color: white;
}

.film-archive::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 45%;

    transform: translate(-50%, -50%);

    width: 800px;
    height: 800px;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.08),
            transparent 70%
        );

    pointer-events: none;
}

@media (max-width: 900px) {

    .project,
    .project.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .project.reverse .project-media,
    .project.reverse .project-info {
        order: unset;
    }

    .navbar {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        gap: 1rem;
    }
}
@media (max-width: 900px) {
    .reel-container {
        flex-direction: column;
        text-align: center;
    }

    .reel-header {
        padding-right: 0;
    }
}

.watch-section {
     display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: .1rem;   /* space under video */
	   grid-column: 1 / -1;
}

.watch-arrow {
    width: 120px;
    height: 60px;
    border-left: 1px solid rgba(255,255,255,.25);
    border-bottom: 1px solid rgba(255,255,255,.25);
	margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.watch-links span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: 0.75rem;
}

.watch-links a {
    color: white;
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: opacity .3s ease;
}

.watch-links a:hover {
    opacity: .6;
}


