/* Global Styles */
:root {
    --primary-color: #0f141e;
    --accent-color: #e63946;
    --light-color: #f7f9fc;
    --light-alt-color: #edf2f7;
    --text-color: #333;
    --secondary-color: #1d3557;
    --tertiary-color: #457b9d;
    --dark-accent: #1e2a3a;
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Delay classes for staggered animations */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

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



/* Header */
header {
    background-color: var(--primary-color);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-svg {
    height: 100px; /* Adjusted height for the wider logo */
    width: auto; /* This will maintain the aspect ratio */
    display: block; /* Ensures it behaves as a block-level element */
    color: white; /* Attempt to color SVG elements if they use currentColor */
    max-width: 200px; /* Limit the maximum width */
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    margin-left: 5px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

/* Language Switcher */
.language-switcher {
    margin-left: 20px;
}

#language-toggle {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#language-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

#language-toggle .lang-text {
    display: inline-block;
}

nav ul li a {
    color: white;
    font-weight: 500;
    font-size: 18px;
    padding: 5px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    left: 0;
    bottom: -4px;
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu {
    display: none;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 1.5px;
}

/* Mobile menu animation */
.mobile-menu.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    color: white;
    background-image: url('/api/placeholder/1200/800');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
    padding-top: 70px; /* Account for fixed header */
}

.hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 20, 30, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #d62b39;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section Spacing */
section {
    padding: 120px 0 100px;
    position: relative;
}

section:not(.hero) {
    margin-top: 0;
}

/* Fix header offset for smooth scrolling */
section[id] {
    scroll-margin-top: 80px;
}

/* About Section */
.about {
    background-color: var(--light-color);
    position: relative;
    z-index: 1;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(247, 249, 252, 0.97), rgba(247, 249, 252, 0.97)), url('/api/placeholder/600/400');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: -1;
}

.coming-soon {
    text-align: center;
    padding: 60px 20px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    background-color: rgba(29, 53, 87, 0.4);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.coming-soon h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 24px;
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.about-text {
    flex: 1;
    padding-right: 40px;
}

.about-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.about-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Films Section */
.films {
    background-color: var(--dark-accent);
    color: white;
    position: relative;
    z-index: 1;
}

.films .section-header h2 {
    color: white;
}

.films::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background-color: var(--tertiary-color);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
    opacity: 0.1;
}

/* Contact Section */
.contact {
    background-color: var(--light-alt-color);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 35%;
    height: 35%;
    background-color: var(--tertiary-color);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background-color: var(--accent-color);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.contact-form {
    max-width: 700px;
    margin: 40px auto 0;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 18px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d62b39;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 70px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--accent-color), var(--tertiary-color));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding-right: 30px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
}

.footer-section p,
.footer-section .email-link {
    margin-bottom: 15px;
    line-height: 1.7;
}

.footer-section .email-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section .email-link:hover {
    color: var(--accent-color);
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 15px;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    margin-top: 20px;
    gap: 15px;
}

.social-links .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-links .social-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
    transition: all 0.3s ease;
}

.social-links .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links .twitter:hover {
    background-color: #1DA1F2;
}

.social-links .youtube:hover {
    background-color: #FF0000;
}

.social-links .social-icon:hover svg {
    fill: white;
}

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

/* Media Queries */
@media screen and (max-width: 991px) {
    .hero h1 {
        font-size: 50px;
    }

    .section-header h2 {
        font-size: 32px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .about-image {
        min-height: 350px;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 100px 0 80px;
    }
    
    .nav-container {
        padding: 0 20px;
    }

    .mobile-menu {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        background-color: var(--primary-color);
        width: 100%;
        flex-direction: column;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        padding: 20px 0;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        margin: 15px 0;
    }

    .hero h1 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 18px;
    }
}

@media screen and (max-width: 576px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .footer-section {
        flex: 100%;
        padding-right: 0;
    }
}
