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

body {
    background-color: #000;
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    height: 100vh;
    overflow: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 40px;
}

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.home-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-right: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.home-link:hover {
    opacity: 1;
}

/* Hamburger Button */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 150;
}

.menu-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.menu-close:hover {
    opacity: 1;
}

.menu-overlay ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.menu-overlay ul a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.menu-overlay ul a:hover {
    opacity: 1;
}

/* Homepage Hero */
.hero {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 12%;
    width: 100%;
    background-color: #000;
    padding: 20px;
}

.hero-logo {
    max-width: 68%;
    max-height: 88%;
    object-fit: contain;
}

.hero-art-area {
    height: 78%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.hero-art {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-bottom-area {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10%;
    width: 100%;
    background-color: #000;
    padding: 10px;
}

.hero-coming-soon {
    max-height: 80%;
    object-fit: contain;
}

/* Carousel */
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img.slide-poster {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    z-index: 10;
    padding: 10px;
}

.carousel-prev:hover,
.carousel-next:hover {
    opacity: 1;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}

.carousel-dot.active {
    background: #fff;
}

/* Release info slides */
.release-info-slides {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.release-slide {
    display: none;
    max-height: 80%;
    object-fit: contain;
}

.release-slide.active {
    display: block;
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 85%;
    }

    .project-credits {
        gap: 20px;
    }

    .credit-name {
        font-size: 0.85rem;
    }

    .credit-titles {
        font-size: 0.7rem;
    }
}

/* Current Projects Page */
.current-projects-page {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

.project-detail {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0 0;
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    padding: 10px 0;
    flex: 0 0 auto;
}

.project-poster-area {
    flex: 1 1 auto;
    max-height: 55%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.project-poster {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.project-logline-area {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.project-logline {
    max-width: 90%;
    object-fit: contain;
}

.project-credits {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 10px 0;
}

.credit-person {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 40%;
    max-width: 200px;
}

.credit-headshot {
    width: 100%;
    max-height: 60%;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 8px;
}

.credit-name {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.credit-titles {
    font-size: 0.8rem;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

/* Past Projects Page */
.past-projects-page {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Page Wrapper with Logo Bar */
.page-wrapper {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.page-logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 12%;
    width: 100%;
    background-color: #000;
    padding: 60px 20px 10px;
}

.page-logo-area a {
    display: flex;
    justify-content: center;
    width: 100%;
}

.page-logo {
    max-width: 65%;
    max-height: 105%;
    object-fit: contain;
}

/* About Page */
.about-page {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
}

.about-content {
    max-width: 600px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.about-title {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.about-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 30px;
}

.about-text {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 16px;
}

/* Contact Page */
.contact-page {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
}

.contact-content {
    max-width: 600px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.contact-email {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.contact-disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.7;
}

/* Team Page */
.team-page {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 20px 40px;
}

.team-member {
    text-align: center;
    max-width: 400px;
}

.team-member img {
    width: 100%;
    max-width: 350px;
    max-height: 60vh;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 24px;
}

.team-member h2 {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.team-member .titles {
    font-size: 0.95rem;
    opacity: 0.7;
    letter-spacing: 0.5px;
}
