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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1a1a;
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

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

ul {
    list-style: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    width: calc(100% - 24px);
    height: 360px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    margin: 12px auto 0;
    border-radius: 14px;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.05) 40%,
        rgba(0, 0, 0, 0.5) 75%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

/* Hero Logo */
.hero-logo {
    position: absolute;
    top: 20px;
    left: 28px;
    z-index: 10;
}

.hero-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Navigation */
.main-nav {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(20, 20, 20, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 100px;
    padding: 6px 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
}

.main-nav ul {
    display: flex;
    gap: 2px;
    align-items: center;
}

.main-nav ul li a {
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    font-weight: 400;
    padding: 6px 16px;
    border-radius: 100px;
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
    display: block;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #1b60ec;
    border-radius: 2px;
    transition: width 0.25s ease;
}

.main-nav ul li a:hover {
    color: #fff;
    opacity: 1;
}

.main-nav ul li a.active {
    color: #fff;
    opacity: 1;
}

.main-nav ul li a.active::after {
    width: 60%;
}


/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span {
    background: #000 !important;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Social Media Sidebar */
.content-social-sidebar {
    position: absolute;
    left: 20px;
    top: 50px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.sidebar-title {
    position: relative;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-transform: uppercase;
    font-size: 0.52rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: rgba(26, 26, 26, 0.4);
    padding-right: 10px; /* space for the line (becomes left padding after 180deg rotation) */
    white-space: nowrap;
}

.sidebar-title::before {
    content: '';
    position: absolute;
    right: 0; /* becomes left: 0 after 180deg rotation */
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(26, 26, 26, 0.2);
}

.sidebar-icons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.sidebar-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sidebar-icons a:hover {
    transform: scale(1.15);
    opacity: 1;
}

.sidebar-icons a img {
    width: 14px;
    height: 14px;
    filter: brightness(0);
    object-fit: contain;
}

.sidebar-icons a.imdb-link {
    width: auto;
    min-width: 22px;
}

.sidebar-icons a.imdb-link img {
    width: 24px;
    height: 10px;
}

.sidebar-icons a svg.sidebar-svg-icon {
    width: 14px;
    height: 14px;
    fill: #1a1a1a;
}

/* Vertical Text */
.hero-vertical-text {
    position: absolute;
    left: 16px;
    bottom: 90px;
    z-index: 10;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.55rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Hero Quote */
.hero-quote {
    position: relative;
    z-index: 10;
    padding: 0 28px 32px 60px;
    max-width: 550px;
}

.quote-author {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 6px;
    opacity: 0.9;
}

.quote-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.68rem;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* ===== MAIN CONTENT AREA ===== */
.main-content {
    position: relative;
    background: #fff;
    width: calc(100% - 24px);
    margin: 0 auto;
    border-radius: 0 0 14px 14px;
}



/* ===== ACTORS SECTION ===== */
.actors-section {
    padding: 40px 30px 50px 60px;
    background: #fff;
}

.actors-header {
    margin-bottom: 30px;
    padding-left: 20px;
}

.actors-subtitle {
    display: block;
    font-size: 0.65rem;
    color: #999;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 2px;
}

.actors-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.actors-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
    width: 100%;
    margin: 0 auto;
}

.actor-card {
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.actor-card:hover {
    transform: translateY(-4px);
}

.actor-image-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    overflow: hidden;
    margin: 0 auto 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.actor-card:hover .actor-image-wrapper {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.actor-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.actor-card:hover .actor-image-wrapper img {
    transform: scale(1.05);
}

.actor-name {
    font-size: 0.62rem;
    font-weight: 400;
    color: #1a1a1a;
}

/* ===== FOOTER ===== */
.footer-section {
    background: #fff;
    padding: 40px 60px 20px;
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    margin-bottom: 36px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 16px;
}

.footer-cta-btn {
    position: relative;
    display: inline-block;
    padding: 10px 24px;
    background: #1b60ec;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 6px;
}

.footer-cta-btn::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 8px solid #1b60ec;
    transition: border-bottom-color 0.3s ease;
}

.footer-cta-btn:hover {
    background: #124eb8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 96, 236, 0.25);
    opacity: 1;
}

.footer-cta-btn:hover::before {
    border-bottom-color: #124eb8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.footer-copyright {
    font-size: 0.62rem;
    color: #999;
    font-weight: 300;
}

.footer-center-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-fav-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.footer-made-in {
    font-size: 0.62rem;
    color: #999;
    font-weight: 300;
}

/* ===== SCROLL ANIMATIONS ===== */
.about-section,
.actors-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.about-section.visible,
.actors-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.actor-card {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.actor-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ---- LARGE DESKTOP (1280px+) ---- */
@media (min-width: 1280px) {
    .hero-section {
        height: 420px;
    }

    .actors-section {
        padding: 50px 40px 60px 70px;
    }

    .actors-grid {
        gap: 18px;
    }
}

/* ---- TABLET LANDSCAPE / SMALL DESKTOP (769px – 1024px) ---- */
@media (max-width: 1024px) {
    .hero-section {
        height: 310px;
    }

    .main-nav ul {
        gap: 2px;
    }

    .main-nav ul li a {
        font-size: 0.68rem;
        padding: 5px 10px;
    }

    /* 4 columns on tablet */
    .actors-section {
        padding: 35px 24px 45px 24px;
    }

    .actors-header {
        padding-left: 6px;
    }

    .actors-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .content-social-sidebar {
        display: none;
    }

    .footer-section {
        padding: 36px 40px 20px;
    }
}

/* ---- TABLET PORTRAIT (601px – 768px) ---- */
@media (max-width: 768px) {
    /* Hero */
    .hero-section {
        width: calc(100% - 16px);
        height: 280px;
        margin: 8px auto 0;
        border-radius: 10px;
    }

    .hero-bg-img {
        object-fit: cover;
        object-position: center center;
    }

    .hero-logo {
        top: 14px;
        left: 16px;
    }

    .hero-logo img {
        height: 26px;
    }

    .hero-vertical-text {
        display: none;
    }

    .hero-quote {
        padding: 0 16px 22px 20px;
        max-width: 100%;
    }

    .quote-author {
        font-size: 0.7rem;
    }

    .quote-text {
        font-size: 0.6rem;
    }

    /* Hamburger menu */
    .mobile-menu-btn {
        display: flex;
    }

    .home-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98); /* Light background to match new style */
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 100;
        border-radius: 0;
        margin: 0;
    }

    .home-nav.open {
        transform: translateX(0);
    }

    .home-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .home-nav ul li a {
        font-size: 1.4rem;
        padding: 10px 24px;
        color: #000; /* Black text for readability on white bg */
    }

    /* Social sidebar — hide on tablet */
    .content-social-sidebar {
        display: none;
    }

    /* Main content */
    .main-content {
        width: calc(100% - 16px);
        border-radius: 0 0 10px 10px;
    }

    /* Actors — 4 columns */
    .actors-section {
        padding: 28px 16px 36px;
    }

    .actors-header {
        padding-left: 4px;
        margin-bottom: 20px;
    }

    .actors-title {
        font-size: 0.95rem;
    }

    .actors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .actor-image-wrapper {
        border-radius: 10px;
    }

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

    /* Footer */
    .footer-section {
        padding: 28px 20px 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-logo {
        height: 36px;
    }
}

/* ---- MOBILE (up to 600px) ---- */
@media (max-width: 600px) {
    .hero-section {
        height: 240px;
    }

    .hero-quote {
        padding: 0 12px 18px 16px;
    }

    /* Actors — 2 columns on small mobile */
    .actors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .actor-name {
        font-size: 0.8rem;
    }

    .actors-title {
        font-size: 0.88rem;
    }

    .footer-section {
        padding: 24px 16px 14px;
    }

    .footer-copyright,
    .footer-made-in {
        font-size: 0.58rem;
    }
}

/* ---- SMALL MOBILE (up to 400px) ---- */
@media (max-width: 400px) {
    .hero-section {
        height: 210px;
        width: calc(100% - 12px);
        margin: 6px auto 0;
        border-radius: 8px;
    }

    .hero-logo img {
        height: 22px;
    }

    .quote-author {
        font-size: 0.65rem;
    }

    .quote-text {
        font-size: 0.56rem;
    }

    .actors-section {
        padding: 20px 12px 28px;
    }

    .actors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .actor-name {
        font-size: 0.75rem;
    }

    .main-content {
        width: calc(100% - 12px);
    }
}

/* ==========================================
   HOME PAGE REDESIGN STYLES
========================================== */

/* Hero Container */
.home-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    background-color: #fff;
    overflow: hidden;
    color: #000;
}

/* Home Navigation */
.home-nav {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.home-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-nav ul li a {
    position: relative;
    color: #000;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    padding-bottom: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.home-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #1b60ec;
    transition: width 0.3s ease;
}

.home-nav ul li a:hover::after,
.home-nav ul li a.active::after {
    width: 100%;
}

.home-mobile-menu-btn span {
    background: #000;
}

/* Top Right Angled Shape */
.home-angled-top-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    clip-path: polygon(100% 0, 100% 80%, 92% 0);
    z-index: 1;
}

/* Typography Logo */
.home-typo-logo-container {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -85%);
    text-align: center;
    width: 100%;
    z-index: 5;
}

.home-typo-logo-container img {
    max-width: 65%;
    width: 680px;
    height: auto;
    margin: 0 auto;
}

.home-typo-logo {
    font-size: 10rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin: 0;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
}

.home-typo-logo .bold-text {
    font-weight: 700;
    color: #000;
}

.home-typo-logo .light-text {
    font-weight: 300;
    color: #000;
}

.home-typo-logo .registered-mark {
    font-size: 2rem;
    font-weight: 700;
    border: 3px solid #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    margin-top: 10px;
}

.home-typo-subtitle {
    font-size: 2rem;
    font-weight: 300;
    color: #000;
    margin-top: 20px;
    letter-spacing: 0.05em;
}

/* Social Sidebar */
.home-social-sidebar {
    position: absolute;
    left: 30px;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.home-social-sidebar .sidebar-title {
    color: #000;
    font-size: 0.7rem;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1.5px;
    padding-right: 10px;
}

.home-social-sidebar .sidebar-title::before {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.3);
}

.home-social-sidebar .sidebar-icons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.invert-icon {
    filter: invert(1);
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.invert-svg {
    fill: #000;
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

/* Angled Bottom Section */
.home-angled-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 42vh;
    padding-top: 60px;
    background-color: #000;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
    z-index: 15;
    display: flex;
    align-items: flex-end;
}

.angled-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 5% 5% 5%;
}

.angled-left-art {
    width: 40%;
    height: 100%;
    position: relative;
    transform: translateY(10px);
}

.angled-right-text {
    width: 50%;
    color: #fff;
    text-align: right;
    padding-bottom: 20px;
}

.angled-right-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.angled-right-text p {
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .home-typo-logo { font-size: 8rem; }
    .home-typo-subtitle { font-size: 1.5rem; }
}

@media (max-width: 1024px) {
    .home-hero {
        height: auto;
        min-height: 700px;
    }
    .home-nav ul {
        gap: 15px;
    }
    .home-nav ul li a {
        font-size: 0.8rem;
    }
    .home-typo-logo-container {
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        padding-top: 140px;
        margin-bottom: 0;
    }
    .home-typo-logo-container img {
        width: 550px !important;
        max-width: 80% !important;
    }
    .home-angled-bottom {
        position: relative;
        height: auto;
        min-height: 40vh;
        padding-top: 80px;
        margin-top: 20px;
        clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
    }
    .angled-content {
        padding: 0 5% 4% 5%;
    }
    .angled-right-text {
        width: 100%;
        text-align: center;
        padding-bottom: 15px;
    }
    .angled-left-art {
        display: none;
    }
    .angled-right-text h2 {
        font-size: 1.8rem;
    }
    .angled-right-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .home-hero { min-height: 600px; height: auto; }
    .home-angled-bottom { height: auto; min-height: 45vh; padding-top: 30px; position: relative; clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%); margin-top: 40px; }
    .home-typo-logo-container { position: relative; transform: none; top: auto; left: auto; padding-top: 100px; margin-bottom: 20px; }
    .home-typo-logo { font-size: 3rem; }
    .home-typo-subtitle { font-size: 1rem; }
    .home-typo-logo .registered-mark { width: 20px; height: 20px; font-size: 1rem; border-width: 2px;}
    .home-typo-logo-container img { max-width: 85% !important; }
    .angled-content { flex-direction: column; align-items: center; padding: 20px; justify-content: flex-end; }
    .angled-left-art { display: none; }
    .angled-right-text { width: 100%; text-align: center; }
    .angled-right-text h2 { font-size: 1.6rem; }
    .angled-right-text p { font-size: 0.85rem; padding-bottom: 20px; }
    .home-social-sidebar { display: none; }
    
    /* Mobile Menu Full Screen Overlay */
    .home-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 100;
    }
    .home-nav.open {
        transform: translateX(0);
    }
    .home-nav ul {
        flex-direction: column;
        gap: 30px;
    }
    .home-nav ul li a {
        font-size: 1.5rem;
        color: #000 !important;
    }

    .mobile-menu-btn { z-index: 110; } /* Keep menu button above full-screen nav */
}
