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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f7f4;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

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

/* Language Switcher */
.lang-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 5px;
    background: rgba(44, 44, 44, 0.9);
    padding: 5px;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 0.9em;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.lang-btn.active {
    background: #8b7355;
    border-color: #8b7355;
    color: white;
}

/* Header Section */
header {
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/cam2.png') center/cover;
    opacity: 0.15;
    z-index: 0;
}

header .content {
    position: relative;
    z-index: 1;
}

header h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    letter-spacing: 3px;
    font-weight: 300;
}

header .subtitle {
    font-size: 1.3em;
    letter-spacing: 8px;
    opacity: 0.95;
    font-weight: 300;
    text-transform: lowercase;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.about-text ul {
    list-style: none;
    font-size: 1.05em;
    line-height: 2;
}

.about-text li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
}

.about-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8b7355;
    font-size: 1.5em;
}

.about-text a {
    color: #8b7355;
    text-decoration: none;
    border-bottom: 1px solid #8b7355;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.about-text a:hover {
    color: #6b5335;
    border-bottom-color: #6b5335;
}

/* Filmography Section */
.filmography {
    padding: 80px 20px;
    background: #f9f7f4;
}

.filmography h2 {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
}

.film-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.film-card {
    background: white;
    padding: 25px;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.film-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.film-card h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.film-card p {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.film-card a {
    display: inline-block;
    color: #8b7355;
    text-decoration: none;
    font-size: 0.9em;
    border-bottom: 1px solid #8b7355;
    transition: color 0.3s ease;
}

.film-card a:hover {
    color: #6b5335;
}

/* Values Section */
.values {
    padding: 80px 20px;
    background: white;
    position: relative;
}

.values-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.values-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.values-text h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #2c2c2c;
}

.value-item {
    margin-bottom: 30px;
}

.value-item h3 {
    font-size: 1.5em;
    color: #8b7355;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 1.05em;
    color: #555;
    line-height: 1.8;
}

/* Projects Section */
.projects {
    padding: 80px 20px;
    background: #2c2c2c;
    color: white;
}

.projects h2 {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 60px;
}

.project-list {
    max-width: 900px;
    margin: 0 auto;
}

.project-item {
    background: rgba(255,255,255,0.05);
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 2px;
    border-left: 3px solid #8b7355;
}

.project-item h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #f9f7f4;
}

.project-item p {
    font-size: 1.05em;
    line-height: 1.8;
    color: #ddd;
}

/* Backstage Section */
.backstage {
    padding: 80px 20px;
    background: #f9f7f4;
}

.backstage h2 {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 40px;
    color: #2c2c2c;
}

.backstage-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.backstage-link {
    display: inline-block;
    background: #8b7355;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 2px;
    font-size: 1.1em;
    margin: 10px;
    transition: background 0.3s ease;
}

.backstage-link:hover {
    background: #6b5335;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 40px auto 30px;
}

.video-item {
    position: relative;
    background: white;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.video-item video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 9/16;
    object-fit: cover;
}

/* Contact Section */
.contact {
    padding: 80px 20px 60px;
    background: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.8em;
    margin-bottom: 50px;
    color: #2c2c2c;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1em;
}

.contact-info p {
    margin: 15px 0;
    color: #555;
}

.contact-info a {
    color: #8b7355;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-info a:hover {
    border-bottom-color: #8b7355;
}

.contact-label {
    font-weight: 500;
    color: #2c2c2c;
}

/* Footer */
footer {
    background: #2c2c2c;
    color: white;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
    .lang-switcher {
        top: 10px;
        right: 10px;
        padding: 4px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 0.85em;
    }

    header h1 {
        font-size: 2.5em;
    }

    header .subtitle {
        font-size: 1em;
        letter-spacing: 4px;
    }

    .about-content,
    .values-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image,
    .values-image {
        height: 400px;
    }

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

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

    h2 {
        font-size: 2.2em !important;
    }
}

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

