/* --- Variables & Reset --- */
:root {
    --bg-color: #0f0f0f;
    --card-bg: #1a1a1a;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --accent: #d4af37; /* Gold accent for cinematic feel */
    --font-family: 'RobotoCBold', 'RobotoCBoldItalic', 'RobotoCItalic', 'RobotoCLight', 'RobotoCLightItalic', 'RobotoCRegular', 'Road_To_Perdition', 'OpenDyslexic-Bold', 'OpenDyslexic-Regular' ;
	--font-heading: 'RobotoCLight';
    --font-body: 'RobotoCRegular';
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.nav-links a:hover { color: var(--accent); }

.cta-link {
    border: 1px solid var(--text-main);
    padding: 8px 16px;
    border-radius: 4px;
}
.cta-link:hover { background: var(--text-main); color: var(--bg-color); }

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('photos/filmapalooza2024.PNG?text=filmapalooza+2024');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    /*margin-bottom: 20px;*/
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: var(--accent);
    color: var(--bg-color);
    font-weight: 600;
    border-radius: 4px;
}
.btn:hover { background-color: #fff; }

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

/* --- Bio Section --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bio-image img {
    width: 90%;
    border-radius: 8px;
    filter: grayscale(70%);
    transition: 0.5s;

}
.bio-image img:hover { filter: grayscale(0%); }

.bio-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    /*margin-bottom: 20px;*/
    color: var(--accent);
}

/* --- Films Carousel (CSS Scroll Snap) --- */
.films-section { background-color: #141414; }
.section-title { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 10px; }
.section-subtitle { color: var(--text-muted); margin-bottom: 30px; }

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding-bottom: 30px;
    /* Hide scrollbar for cleaner look */
    scrollbar-width: none; /* Firefox */
}
.carousel::-webkit-scrollbar { display: none; /* Chrome/Safari */ }

.film-card {
    flex: 0 0 auto;
    width: 300px;
    scroll-snap-align: start;
    position: relative;
    transition: transform 0.3s ease;
}

.film-card:hover { transform: scale(1.05); }

.film-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(90%);
}
.film-card img:hover { filter: grayscale(0%)};

.film-info {
    margin-top: 15px;
}
.film-info h3 { font-size: 1.2rem; margin-bottom: 5px; }
.film-info span { font-size: 0.9rem; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-box {
    background: var(--card-bg);
    padding: 40px;
    border: 1px solid #333;
    text-align: center;
}

.contact-box h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-box p { color: var(--text-muted); margin-bottom: 25px; }

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--bg-color); }

footer {
    text-align: center;
    margin-top: 80px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .split-layout { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; /* In a real site, you'd add a hamburger menu here */ }
}