/* ============================================
   CINEMATIC LOVE THEME
   Film şeridi ve sinema temalı romantik tasarım
   ============================================ */

/* Tema Renkleri */
:root {
    --cinematic-dark: #1a1a1a;
    --cinematic-gold: #d4af37;
    --cinematic-red: #c41e3a;
    --cinematic-silver: #c0c0c0;
    --cinematic-cream: #f5f5dc;
}

/* Body Background */
body.cinematic-theme {
    background: var(--cinematic-dark);
    color: var(--cinematic-cream);
}

/* Hero Section */
.cinematic-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #000000 0%, #1a1a1a 100%);
}

.clapperboard {
    max-width: 600px;
    background: #2a2a2a;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    transform: perspective(1000px) rotateX(5deg);
    animation: clapperFloat 3s ease-in-out infinite;
}

@keyframes clapperFloat {

    0%,
    100% {
        transform: perspective(1000px) rotateX(5deg) translateY(0);
    }

    50% {
        transform: perspective(1000px) rotateX(5deg) translateY(-20px);
    }
}

.clapper-top {
    background: repeating-linear-gradient(45deg,
            #000,
            #000 40px,
            #fff 40px,
            #fff 80px);
    padding: 2rem;
    position: relative;
}

.clapper-top::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: #333;
}

.clapper-content {
    background: #2a2a2a;
    padding: 3rem;
    text-align: center;
}

.clapper-content h1 {
    font-family: var(--font-secondary);
    font-size: 3rem;
    color: var(--cinematic-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.clapper-content p {
    font-size: 1.25rem;
    color: var(--cinematic-cream);
    margin-bottom: 0.5rem;
}

.clapper-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
    text-align: left;
}

.info-item {
    background: rgba(212, 175, 55, 0.1);
    padding: 1rem;
    border-left: 3px solid var(--cinematic-gold);
}

.info-label {
    font-size: 0.875rem;
    color: var(--cinematic-silver);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-size: 1.125rem;
    color: var(--cinematic-gold);
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Film Strip Section */
.filmstrip-section {
    padding: 5rem 0;
    background: var(--cinematic-dark);
}

.filmstrip-container {
    position: relative;
    padding: 3rem 0;
}

.filmstrip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.film-frame {
    background: #000;
    padding: 1rem;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.film-frame::before,
.film-frame::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 20px;
    background: repeating-linear-gradient(90deg,
            #000 0px,
            #000 10px,
            transparent 10px,
            transparent 15px,
            #333 15px,
            #333 25px,
            transparent 25px,
            transparent 30px);
}

.film-frame::before {
    top: 0;
}

.film-frame::after {
    bottom: 0;
}

.film-frame:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.film-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border: 3px solid #333;
    filter: sepia(20%) contrast(1.1);
}

.film-caption {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #1a1a1a;
    margin-top: 1rem;
    border-top: 2px solid var(--cinematic-gold);
}

.film-caption h3 {
    color: var(--cinematic-gold);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.film-caption p {
    color: var(--cinematic-cream);
    font-size: 0.95rem;
    line-height: 1.6;
}

.scene-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--cinematic-red);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Spotlight Section */
.spotlight-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #1a1a1a 0%, #000 100%);
    position: relative;
}

.spotlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.spotlight-message {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid var(--cinematic-gold);
    border-radius: 10px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.spotlight-message::before {
    content: '🎬';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    background: var(--cinematic-dark);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid var(--cinematic-gold);
}

.spotlight-message h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--cinematic-gold);
    margin-bottom: 2rem;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.spotlight-message p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--cinematic-cream);
    margin-bottom: 1.5rem;
}

.credits {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--cinematic-gold);
}

.credits-title {
    font-size: 1rem;
    color: var(--cinematic-silver);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.credits-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.credit-item {
    text-align: center;
}

.credit-role {
    font-size: 0.875rem;
    color: var(--cinematic-silver);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credit-name {
    font-size: 1.125rem;
    color: var(--cinematic-gold);
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Footer */
.cinematic-footer {
    background: #000;
    color: var(--cinematic-cream);
    text-align: center;
    padding: 3rem 0;
    border-top: 3px solid var(--cinematic-gold);
}

.cinematic-footer h2 {
    font-family: var(--font-secondary);
    color: var(--cinematic-gold);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .clapperboard {
        max-width: 90%;
    }

    .clapper-content h1 {
        font-size: 2rem;
    }

    .clapper-info {
        grid-template-columns: 1fr;
    }

    .filmstrip {
        grid-template-columns: 1fr;
    }

    .spotlight-message {
        padding: 3rem 2rem;
    }

    .spotlight-message h2 {
        font-size: 2rem;
    }

    .credits-list {
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .clapper-content {
        padding: 2rem;
    }

    .clapper-content h1 {
        font-size: 1.75rem;
    }

    .film-image {
        height: 250px;
    }

    .spotlight-message {
        padding: 2rem 1.5rem;
    }

    .spotlight-message h2 {
        font-size: 1.75rem;
    }

    .spotlight-message p {
        font-size: 1.125rem;
    }
}