/* ================================
   BEGÜM ÇAĞLA TAŞKIN - STYLES
   Premium Cinematic Design
================================ */

/* === CSS Variables === */
:root {
    --color-bg-primary: #0a0a0a;
    --color-bg-secondary: #111111;
    --color-bg-tertiary: #1a1a1a;
    --color-accent-red: #8b0000;
    --color-accent-red-light: #a52a2a;
    --color-gold: #d4af37;
    --color-gold-light: #e6c55a;
    --color-text-primary: #f5f5f5;
    --color-text-secondary: #a0a0a0;
    --color-text-muted: #6a6a6a;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* === Typography === */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

/* === Container === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-fast);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-primary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition-fast);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all var(--transition-fast);
}

/* === Splash Screen === */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease, transform 0.8s ease;
    overflow: hidden;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.1);
}

/* Animated Background */
.splash-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.splash-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(30, 30, 30, 0.8) 0%, transparent 100%);
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.splash-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: glowFloat 6s ease-in-out infinite;
}

.splash-glow.glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.15);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.splash-glow.glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(139, 0, 0, 0.2);
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

.splash-glow.glow-3 {
    width: 200px;
    height: 200px;
    background: rgba(212, 175, 55, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes glowFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -20px) scale(1.1);
    }

    50% {
        transform: translate(-10px, 10px) scale(0.9);
    }

    75% {
        transform: translate(15px, 15px) scale(1.05);
    }
}

/* Floating Film Strips */
.film-strip {
    position: absolute;
    width: 60px;
    height: 300%;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 20px,
            rgba(212, 175, 55, 0.03) 20px,
            rgba(212, 175, 55, 0.03) 40px);
    border-left: 2px solid rgba(212, 175, 55, 0.1);
    border-right: 2px solid rgba(212, 175, 55, 0.1);
}

.film-strip.strip-1 {
    left: 10%;
    top: -50%;
    animation: filmFloat 20s linear infinite;
}

.film-strip.strip-2 {
    right: 10%;
    top: -100%;
    animation: filmFloat 25s linear infinite reverse;
}

@keyframes filmFloat {
    0% {
        transform: translateY(0) rotate(5deg);
    }

    100% {
        transform: translateY(-50%) rotate(5deg);
    }
}

/* Splash Particles Container */
.splash-particles {
    position: absolute;
    inset: 0;
}

/* Splash Logo */
.splash-logo {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 30px;
    animation: splashFadeIn 1s ease forwards, logoGlow 2s ease-in-out infinite;
    opacity: 0;
}

@keyframes logoGlow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }

    50% {
        text-shadow: 0 0 40px rgba(212, 175, 55, 0.8), 0 0 60px rgba(212, 175, 55, 0.4);
    }
}

.splash-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

@keyframes splashFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.splash-subtitle {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 30px;
    animation: splashFadeIn 1s ease 0.2s forwards;
    opacity: 0;
}

.splash-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.9;
    margin: 0;
}

.splash-line {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    background: url('images/splash-portrait.jpg') center center / cover no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    animation: splashTextReveal 1.2s ease forwards;
    opacity: 0;
}

.splash-line:nth-child(1) {
    background-position: center 20%;
    animation-delay: 0.3s;
}

.splash-line:nth-child(2) {
    background-position: center 50%;
    animation-delay: 0.5s;
}

.splash-line:nth-child(3) {
    background-position: center 80%;
    animation-delay: 0.7s;
}

@keyframes splashTextReveal {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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


.splash-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    animation: splashFadeIn 1s ease 1s forwards;
    opacity: 0;
}

.splash-tagline-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.splash-tagline span:not(.splash-tagline-line) {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text-secondary);
    letter-spacing: 2px;
}

.splash-loader {
    margin-top: 50px;
    animation: splashFadeIn 1s ease 1.2s forwards;
    opacity: 0;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--color-gold);
    animation: loaderProgress 2.5s ease forwards;
}

@keyframes loaderProgress {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.loader-text {
    display: block;
    margin-top: 15px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: splashFadeIn 1s ease 1.5s forwards;
    opacity: 0;
}

.splash-hint {
    margin-top: 40px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: pulseHint 2s ease-in-out infinite;
    animation-delay: 2s;
    opacity: 0;
}

@keyframes pulseHint {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

/* Floating Particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 4s ease-in-out infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    20% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1);
    }
}

/* === Old Hero Section (backup) === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, #1a0a0a 50%, var(--color-bg-primary) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 550px;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 25px;
}

.title-line {
    display: block;
}

.title-line.gold {
    color: var(--color-gold);
}

.hero-decoration {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-decoration .line {
    width: 50px;
    height: 1px;
    background: var(--color-gold);
}

.hero-decoration .star {
    color: var(--color-gold);
    font-size: 0.8rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    font-style: italic;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-accent-red);
    color: white;
}

.btn-primary:hover {
    background: var(--color-accent-red-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-bg-primary);
}

/* === Hero Image === */
.hero-image {
    flex: 0 0 400px;
}

.hero-image-frame {
    position: relative;
    width: 350px;
    height: 450px;
}

.hero-image-glow {
    position: absolute;
    inset: -20px;
    background: var(--color-gold);
    opacity: 0.15;
    filter: blur(40px);
    border-radius: 50%;
}

.hero-portrait {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--color-bg-tertiary), var(--color-bg-secondary));
    border: 2px solid var(--color-gold);
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.portrait-placeholder {
    text-align: center;
    color: var(--color-gold);
    opacity: 0.5;
}

.portrait-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    display: block;
}

/* === Hero Scroll === */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* === Sections === */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-header.light .section-title {
    color: var(--color-text-primary);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-divider .line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.section-divider i {
    color: var(--color-gold);
    font-size: 1rem;
}

/* === Biography === */
.biography {
    background: var(--color-bg-secondary);
}

.biography-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.biography-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 5px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--color-bg-tertiary), var(--color-bg-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    opacity: 0.3;
}

.image-placeholder i {
    font-size: 4rem;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-accent {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--color-gold);
    border-radius: 5px;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-accent-red);
    padding: 25px;
    border-radius: 5px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.experience-badge .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.biography-text {
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 3rem;
    color: var(--color-gold);
    opacity: 0.2;
}

.bio-paragraph {
    margin-bottom: 20px;
    color: var(--color-text-secondary);
    font-size: 1rem;
}

.bio-paragraph strong {
    color: var(--color-gold);
}

.bio-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === Biography Enhanced Elements === */
.bio-name {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.bio-tagline {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.bio-tagline i {
    color: var(--color-gold);
    margin-right: 5px;
}

.bio-paragraph.lead {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.bio-timeline {
    margin: 30px 0;
    padding-left: 20px;
    border-left: 2px solid rgba(212, 175, 55, 0.3);
}

.timeline-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--color-gold);
    border-radius: 50%;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-accent-red), var(--color-accent-red-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-year {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.timeline-content p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.bio-highlights {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    transition: all var(--transition-fast);
}

.highlight-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.highlight-item i {
    color: var(--color-gold);
    font-size: 1rem;
}

.highlight-item span {
    color: var(--color-text-primary);
    font-size: 0.85rem;
    font-weight: 500;
}

/* === Filmography === */
.filmography {
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, #1a0a0a 100%);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--color-text-muted);
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-bg-primary);
}

.filmography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.film-card {
    background: var(--color-bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.film-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.film-card:hover .card-image img {
    transform: scale(1.1);
}

.card-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image .image-placeholder.dark i {
    font-size: 3rem;
    color: var(--color-gold);
    opacity: 0.3;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.card-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    background: var(--color-accent-red);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
}

.card-badge.film {
    background: var(--color-gold);
    color: var(--color-bg-primary);
}

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-text-primary);
}

.card-role {
    font-size: 0.85rem;
    color: var(--color-gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-description {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.card-btn:hover {
    background: var(--color-gold);
    color: var(--color-bg-primary);
}

.card-btn i {
    font-size: 1.2rem;
}

/* === Featured === */
.featured {
    background: var(--color-bg-secondary);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-card {
    background: var(--color-bg-tertiary);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    display: block;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}


.featured-image {
    position: relative;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.featured-card:hover .featured-image img {
    transform: scale(1.08);
}

.featured-image .poster-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    opacity: 0.3;
    font-size: 4rem;
}

.featured-info {
    padding: 20px;
}

.featured-info .featured-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--color-gold);
    color: var(--color-bg-primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.featured-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--color-text-primary);
    line-height: 1.3;
}

.featured-info .featured-subtitle {
    font-size: 0.9rem;
    color: var(--color-gold);
    margin-bottom: 8px;
    font-weight: 500;
}

.featured-info .featured-meta {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.featured-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: var(--color-gold);
    color: var(--color-bg-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
}

.featured-content {
    padding: 20px;
}

.featured-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--color-text-primary);
}

.featured-subtitle {
    display: block;
    font-size: 0.85rem;
    color: var(--color-gold);
    margin-bottom: 10px;
    font-weight: 500;
}

.featured-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.featured-meta {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.featured-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* === Press === */
.press {
    background: linear-gradient(180deg, #1a0a0a 0%, var(--color-bg-primary) 100%);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.press-card {
    background: var(--color-bg-secondary);
    border-radius: 8px;
    padding: 35px;
    position: relative;
    border-left: 3px solid var(--color-gold);
    transition: all var(--transition-fast);
}

.press-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.press-icon {
    font-size: 2rem;
    color: var(--color-gold);
    opacity: 0.3;
    margin-bottom: 20px;
}

.press-quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.press-source {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.source-name {
    font-weight: 600;
    color: var(--color-gold);
    font-size: 0.9rem;
}

.source-date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* === Contact === */
.contact {
    background: var(--color-bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: var(--color-bg-tertiary);
    border-radius: 8px;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    flex: 1;
}

.social-card:hover {
    border-color: var(--color-gold);
    transform: translateX(10px);
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.social-card.instagram .social-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-card.imdb .social-icon {
    background: #f5c518;
    color: #000;
}

.social-card.twitter .social-icon {
    background: #1da1f2;
    color: white;
}

.social-card.youtube .social-icon {
    background: #ff0000;
    color: white;
}

.social-info {
    flex: 1;
}

.social-name {
    display: block;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 3px;
}

.social-handle {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.social-arrow {
    color: var(--color-gold);
    opacity: 0;
    transition: all var(--transition-fast);
}

.social-card:hover .social-arrow {
    opacity: 1;
    transform: translateX(5px);
}

.contact-card {
    background: var(--color-bg-tertiary);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(145deg, var(--color-accent-red), var(--color-accent-red-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-text-primary);
}

.contact-card p {
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.contact-email {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 20px;
    transition: all var(--transition-fast);
}

.contact-email:hover {
    color: var(--color-gold-light);
}

.contact-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* === Footer === */
.footer {
    background: var(--color-bg-primary);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    display: block;
    margin-bottom: 5px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--color-gold);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid var(--color-text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-bg-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* === Animations === */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeLeft 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

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

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;
    transition: all 0.8s ease;
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible {
    opacity: 1;
    transform: translate(0);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image {
        flex: none;
        order: -1;
    }

    .hero-image-frame {
        width: 280px;
        height: 360px;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .biography-content {
        grid-template-columns: 1fr;
    }

    .biography-image {
        max-width: 400px;
        margin: 0 auto 60px;
    }

    .experience-badge {
        right: 0;
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-bg-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right var(--transition-fast);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .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);
    }

    .filmography-grid {
        grid-template-columns: 1fr;
    }

    .press-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .bio-stats {
        flex-direction: column;
        gap: 20px;
    }

    .filter-tabs {
        flex-wrap: wrap;
    }

    .hero-subtitle-new {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }

    .clip-line {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }

    .hero-tagline {
        flex-direction: column;
        gap: 10px;
    }

    .tagline-line {
        width: 40px;
    }

    .tagline-text {
        font-size: 0.9rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .hero-scroll-indicator {
        bottom: 20px;
    }
}

/* === Film Card Enhanced Styles === */
.film-poster {
    display: block;
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.film-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.film-card:hover .film-poster img {
    transform: scale(1.1);
}

.poster-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--color-bg-tertiary), var(--color-bg-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-gold);
    opacity: 0.3;
}

.film-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    gap: 8px;
}

.film-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    font-weight: 700;
}

.film-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

.film-info {
    padding: 20px;
}

.film-info .film-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}

.film-info .film-role {
    font-size: 0.9rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.film-info .film-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.film-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.film-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 6px;
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.film-link:hover {
    background: var(--color-gold);
    color: var(--color-bg-primary);
    transform: translateY(-2px);
}

.film-link i {
    font-size: 1rem;
}