/* Movies Page Styles */

/* Movies Hero */
.movies-hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2d 50%, #1a0d0d 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.movies-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 165, 90, 0.15) 0%, transparent 50%);
    animation: pulseMovies 12s ease-in-out infinite;
}

@keyframes pulseMovies {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.9; }
}

.movies-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-light);
}

.movies-hero-content h1 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    font-style: italic;
}

/* Featured Film Section */
.featured-film-section {
    padding: 6rem 0;
    background: white;
}

.production-badge-wrapper {
    text-align: center;
    margin-bottom: 1rem;
}

.production-badge {
    display: inline-block;
    padding: 0.7rem 2rem;
    background: linear-gradient(135deg, #8b0000, #c9a55a);
    color: white;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.section-subtitle {
    text-align: center;
    color: #888;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.film-showcase {
    margin-top: 4rem;
    display: grid;
    gap: 4rem;
}

/* Trailer Container */
.trailer-container {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--secondary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.trailer-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1a1a 100%);
    color: rgba(255, 255, 255, 0.6);
}

.play-icon {
    margin-bottom: 1.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.trailer-placeholder:hover .play-icon {
    opacity: 1;
    transform: scale(1.1);
}

.trailer-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.trailer-container iframe {
    width: 100%;
    height: 100%;
}

/* Film Content */
.film-content {
    padding: 2rem 0;
}

.film-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 2px solid var(--light-bg);
    border-bottom: 2px solid var(--light-bg);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: #666;
    font-weight: 500;
}

.meta-item svg {
    color: var(--primary-color);
}

/* Film Synopsis */
.film-synopsis {
    margin: 3rem 0;
}

.film-synopsis h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.film-synopsis p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.opening-line {
    font-size: 1.3rem !important;
}

.opening-line strong {
    color: var(--secondary-color);
}

.closing-line {
    color: var(--primary-color);
    font-size: 1.1rem !important;
    font-style: italic;
}

/* Film Credits */
.film-credits {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.film-credits h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.credit-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.credit-role {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.credit-name {
    font-size: 1.15rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Film Actions */
.film-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-casting-primary,
.btn-read-book {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-casting-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
}

.btn-casting-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 165, 90, 0.4);
    background: #d4b16a;
}

.btn-read-book {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-read-book:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* Concept Art Section */
.concept-art-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.concept-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.concept-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.concept-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.concept-image-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--secondary-color), #2d1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
}

.placeholder-icon {
    opacity: 0.5;
}

.concept-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.concept-info {
    padding: 1.5rem;
}

.concept-info h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.concept-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.gallery-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 0;
    background: white;
}

.timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 22px;
    height: 22px;
    background: white;
    border: 4px solid #ddd;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline-item.completed .timeline-marker {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.timeline-item.active .timeline-marker {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 8px rgba(26, 26, 26, 0.1);
    animation: timelinePulse 2s ease-in-out infinite;
}

@keyframes timelinePulse {
    0%, 100% { box-shadow: 0 0 0 8px rgba(26, 26, 26, 0.1); }
    50% { box-shadow: 0 0 0 12px rgba(26, 26, 26, 0.05); }
}

.timeline-content {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #ddd;
}

.timeline-item.completed .timeline-content {
    border-left-color: var(--primary-color);
}

.timeline-item.active .timeline-content {
    border-left-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.timeline-date {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content p:last-child {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Vision Section */
.vision-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.vision-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.vision-text h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.vision-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.vision-text em {
    font-style: italic;
    color: var(--primary-color);
}

.vision-quote {
    background: var(--secondary-color);
    padding: 3rem 2rem;
    border-radius: 12px;
    position: sticky;
    top: 120px;
}

.vision-quote blockquote {
    margin: 0;
}

.vision-quote p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.vision-quote footer {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: white;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cta-card {
    background: var(--light-bg);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #0d0d0d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
}

.newsletter-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.newsletter-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 165, 90, 0.4);
    background: #d4b16a;
}

/* Responsive Design */
@media (max-width: 968px) {
    .vision-content {
        grid-template-columns: 1fr;
    }
    
    .vision-quote {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .movies-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .film-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .film-actions {
        flex-direction: column;
    }
    
    .btn-casting-primary,
    .btn-read-book {
        width: 100%;
        text-align: center;
    }
    
    .credits-grid {
        grid-template-columns: 1fr;
    }
    
    .concept-gallery {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 5px;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}
