
/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #0d0d0d;
    color: #f4f4f4;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}
a { color: #d4af37; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #f9e596; }
img { max-width: 100%; height: auto; display: block; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.text-center { text-align: center; }

/* Navigation */
header {
    position: fixed;
    top: 0; width: 100%;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 2rem;
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; letter-spacing: 2px; text-transform: uppercase; color: #fff; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: #fff; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; }
.nav-links a:hover { color: #d4af37; }

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}
.hero-video-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    background: url('../image_3.png') center/cover no-repeat;
}
.hero-video-container video {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.6; /* Fallback for when video is added */
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2; max-width: 800px; padding: 0 2rem;
}
.hero h1 { font-size: 4rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; font-weight: 300; letter-spacing: 1px; margin-bottom: 2.5rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid #d4af37;
    color: #d4af37;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
}
.btn-primary { background: #d4af37; color: #0d0d0d; }
.btn-primary:hover { background: #f9e596; border-color: #f9e596; color: #0d0d0d; }
.btn-secondary:hover { background: rgba(212, 175, 55, 0.1); }
.btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Forms */
.form-group { margin-bottom: 1.5rem; text-align: left; }
.form-group label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; color: #ccc; }
.form-control {
    width: 100%; padding: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.form-control:focus { outline: none; border-color: #d4af37; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 768px) { .form-grid { grid-template-columns: 1fr; gap: 0; } }
.optional-fields { display: none; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.optional-fields.active { display: block; animation: fadeIn 0.5s; }

/* Footer */
footer { border-top: 1px solid rgba(255,255,255,0.1); padding: 3rem 0; font-size: 0.8rem; color: #888; text-align: center; }
footer a { color: #888; margin: 0 1rem; }
footer a:hover { color: #fff; }

/* Utility */
.mb-2 { margin-bottom: 2rem; }
.mt-4 { margin-top: 4rem; }
.text-gold { color: #d4af37; }
.page-header { padding: 12rem 0 4rem; text-align: center; background: #111; border-bottom: 1px solid rgba(255,255,255,0.05); }

/* Grid for productions */
.production-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; margin-top: 4rem; }
.production-card { background: #151515; padding: 2rem; border: 1px solid rgba(255,255,255,0.05); transition: transform 0.3s ease; }
.production-card:hover { transform: translateY(-5px); border-color: rgba(212,175,55,0.3); }
.tag { display: inline-block; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; padding: 0.3rem 0.6rem; border: 1px solid #d4af37; color: #d4af37; margin-bottom: 1rem; }

/* Features Images */
.side-image { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 900px) { .split-layout { grid-template-columns: 1fr; } }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
