@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --brown-dark: #2D1F1F;
    --brown-medium: #3D2B2B;
    --coral: #E85555;
    --coral-light: #F06B6B;
    --lavender: #A594F9;
    --lavender-dark: #8B7CE8;
    --cream: #FAF3E8;
    --cream-dark: #F0E6D6;
    --golden: #F5A623;
    --cyan: #00C4CC;
    --navy: #0D2847;
    --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--cream);
    color: var(--brown-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== NAVIGATION ==================== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.25rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: rgba(45, 31, 31, 0.97);
    backdrop-filter: blur(10px);
}

nav.scrolled {
    padding: 0.75rem 4%;
}

/* On subpages, nav always has compact padding */
body.subpage nav {
    padding: 0.75rem 4%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--cream);
}

.logo img {
    height: 66px;
    width: auto;
    display: block;
}

.logo-mark {
    display: flex;
    align-items: center;
}

.logo-mark svg {
    height: 28px;
    width: auto;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.logo-text span {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 1px;
}

.nav-center {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    align-items: center;
}

.nav-center a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.81rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    transition: opacity 0.3s;
}

.nav-center a:hover { opacity: 0.7; }
.nav-center a.active { color: var(--coral); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-right .submit-film-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: var(--coral);
    padding: 0.5rem 1.15rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-right .submit-film-link:hover {
    background: var(--coral-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(232, 85, 85, 0.4);
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.nav-social a {
    color: var(--cream);
    display: flex;
    align-items: center;
    transition: color 0.3s, transform 0.3s;
}

.nav-social a:hover {
    color: var(--coral);
    transform: translateY(-2px);
}

.nav-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.mobile-menu span {
    width: 25px;
    height: 2px;
    background: var(--cream);
    transition: 0.3s;
    display: block;
}

/* Mobile nav overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(45, 31, 31, 0.98);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-overlay.open { display: flex; }

.mobile-nav-overlay a {
    color: var(--cream);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s;
}

.mobile-nav-overlay a:hover { color: var(--coral); }

.mobile-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.mobile-social a {
    font-size: 1rem !important;
}

/* ==================== SECTIONS ==================== */
section { padding: 6rem 4%; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    font-size: 0.85rem;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--brown-medium);
    opacity: 0.8;
}

/* ==================== HERO (index only) ==================== */
.hero {
    min-height: 100vh;
    background: var(--brown-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 80px; left: 0; right: 0; bottom: 0;
    background: url('kapak.jpg') center center / cover no-repeat;
    opacity: 0.45;
}

.hero::after {
    content: '';
    position: absolute;
    top: 80px; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(45, 31, 31, 0.5) 0%, rgba(45, 31, 31, 0.25) 100%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
}

.hero-tagline {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.55rem, 6.8vw, 5.1rem);
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title em {
    color: var(--coral);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(0.85rem, 2.1vw, 1.15rem);
    color: var(--cream);
    opacity: 0.85;
    max-width: 750px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--coral);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.hero-cta:hover {
    background: var(--coral-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 85, 85, 0.4);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--cream);
    opacity: 0.6;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==================== PAGE HERO (subpages) ==================== */
.page-hero {
    padding-top: 10rem;
    padding-bottom: 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero.brown-bg {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
    color: var(--cream);
}

.page-hero.brown-bg .page-hero-title { color: var(--cream); }
.page-hero.brown-bg .page-hero-subtitle { color: var(--cream); opacity: 0.8; }

.page-hero.lavender-bg {
    background: var(--lavender);
    color: var(--navy);
}

.page-hero.lavender-bg .page-hero-title { color: var(--navy); }
.page-hero.lavender-bg .page-hero-subtitle { color: var(--navy); opacity: 0.8; }
.page-hero.lavender-bg .section-label { color: var(--navy); }

.page-hero.cyan-bg {
    background: var(--cyan);
    color: var(--navy);
}

.page-hero.cyan-bg .page-hero-title { color: var(--navy); }
.page-hero.cyan-bg .page-hero-subtitle { color: var(--navy); opacity: 0.8; }
.page-hero.cyan-bg .section-label { color: var(--navy); }

.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ==================== ABOUT CARDS ==================== */
.about { background: var(--cream); }

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(45, 31, 31, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(45, 31, 31, 0.12);
}

.about-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.about-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--brown-dark);
}

.about-card p {
    color: var(--brown-medium);
    opacity: 0.85;
    line-height: 1.7;
}

.about-card--curated {
    background: linear-gradient(180deg, rgba(45, 31, 31, 0.72) 0%, rgba(45, 31, 31, 0.82) 100%), url('curated-film.jpg') center center / cover no-repeat;
}

.about-card--curated h3,
.about-card--curated p {
    color: var(--cream);
    opacity: 1;
}

.about-card--qa {
    background: linear-gradient(180deg, rgba(45, 31, 31, 0.7) 0%, rgba(45, 31, 31, 0.82) 100%), url('qa.jpg') center 20% / cover no-repeat;
}

.about-card--qa h3,
.about-card--qa p {
    color: var(--cream);
    opacity: 1;
}

.about-card--music {
    background: linear-gradient(180deg, rgba(45, 31, 31, 0.75) 0%, rgba(45, 31, 31, 0.85) 100%), url('music.jpg') center center / cover no-repeat;
}

.about-card--music h3,
.about-card--music p {
    color: var(--cream);
    opacity: 1;
}

/* ==================== WHAT WE DO ==================== */
.whatwedo {
    background: var(--brown-dark);
    color: var(--cream);
}

.whatwedo .section-title { color: var(--cream); }
.whatwedo .section-subtitle { color: var(--cream); opacity: 0.7; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    padding: 2rem;
    border-left: 3px solid var(--coral);
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(232, 85, 85, 0.1);
    border-left-color: var(--lavender);
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--coral);
}

.feature-item p { opacity: 0.8; line-height: 1.6; }

/* ==================== PROGRAMME ==================== */
.programme {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
    padding-top: 3rem;
}

.programme .section-header {
    margin-bottom: 2.5rem;
}

.edition-showcase { max-width: 1200px; margin: 0 auto; }

.edition-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45, 31, 31, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.edition-visual {
    background: linear-gradient(135deg, var(--coral) 0%, var(--brown-dark) 100%);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.edition-visual::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    top: -100px; right: -100px;
}

.edition-visual--img {
    padding: 0;
    background: none;
}

.edition-visual--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    min-height: 400px;
}

.edition-visual--img::before { display: none; }

.edition-visual h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--cream);
    text-align: center;
    margin-bottom: 0.5rem;
}

.edition-visual .date { color: var(--cream); opacity: 0.8; font-size: 1.1rem; }

.edition-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.edition-label {
    font-size: 0.8rem;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.edition-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--brown-dark);
}

.edition-info { margin-bottom: 2rem; }

.edition-info p {
    margin-bottom: 0.75rem;
    color: var(--brown-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.edition-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brown-dark);
    color: var(--cream);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    width: fit-content;
}

.edition-cta:hover {
    background: var(--coral);
    transform: translateX(5px);
}

.edition-cta--secondary {
    background: transparent;
    color: var(--brown-dark);
    border: 1.5px solid var(--brown-dark);
    margin-top: 1.25rem;
}

.edition-cta--secondary:hover {
    background: var(--coral);
    color: var(--cream);
    border-color: var(--coral);
}

/* ==================== EXPERIENCE / EXPLORE ==================== */
.experience {
    background: var(--lavender);
    color: var(--navy);
}

.experience .section-label { color: var(--navy); }
.experience .section-title { color: var(--navy); }

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.exp-item { text-align: center; padding: 2rem; }
.exp-icon { font-size: 3rem; margin-bottom: 1rem; }
.exp-item h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.exp-item p { opacity: 0.8; line-height: 1.6; }

/* Explore page specific */
.explore-section { max-width: 1000px; margin: 0 auto; }

.explore-block {
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(45, 31, 31, 0.08);
}

.explore-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--brown-dark);
}

.explore-block h3 .accent { color: var(--coral); }

.explore-block p {
    color: var(--brown-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.explore-block .highlight-list {
    list-style: none;
    margin-top: 1.5rem;
}

.explore-block .highlight-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--cream-dark);
    color: var(--brown-medium);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.explore-block .highlight-list li strong {
    color: var(--brown-dark);
}

.have-you-tried {
    background: linear-gradient(135deg, var(--coral) 0%, var(--brown-dark) 100%);
    color: var(--cream);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.have-you-tried h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.have-you-tried p {
    color: var(--cream);
    opacity: 0.9;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Panel topics */
.panel-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.panel-topic {
    padding: 1.25rem;
    background: var(--cream);
    border-radius: 12px;
    border-left: 3px solid var(--lavender);
    color: var(--brown-dark);
    font-size: 0.95rem;
}

/* ==================== STATS ==================== */
.stats {
    background: var(--golden);
    color: var(--brown-dark);
    padding: 5rem 4%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p { font-size: 1rem; opacity: 0.8; font-weight: 500; }

/* ==================== COMMUNITY ==================== */
.community { background: var(--cream); }

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.community-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--brown-dark);
}

.community-text p {
    color: var(--brown-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.community-visual {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--navy) 100%);
    border-radius: 30px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.community-visual::after {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 20rem;
    color: rgba(255,255,255,0.1);
    position: absolute;
}

.community-quote {
    color: var(--cream);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    padding: 2rem;
    z-index: 1;
    max-width: 400px;
}

/* Community image banner */
.community-banner {
    position: relative;
    padding: 0;
    overflow: hidden;
    max-height: 420px;
}

.community-banner img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: left center;
    display: block;
}

.community-banner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(232, 85, 85, 0.65) 0%, rgba(45, 31, 31, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.community-banner-overlay p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--cream);
    font-style: italic;
    max-width: 700px;
    text-align: center;
    padding: 2rem;
}

/* Community page specific */
.community-full { max-width: 900px; margin: 0 auto; }

.community-full p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--brown-medium);
    margin-bottom: 1.5rem;
}

.community-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(45, 31, 31, 0.08);
    border-top: 4px solid var(--coral);
    transition: transform 0.3s;
}

.value-card:hover { transform: translateY(-5px); }

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--brown-dark);
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--brown-medium);
    margin-bottom: 0;
}

/* ==================== TEAM ==================== */
.team {
    background: var(--cyan);
    color: var(--navy);
}

.team .section-label, .team .section-title { color: var(--navy); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-member { text-align: center; }

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--navy);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--cyan);
}

.team-member h4 { font-size: 1.25rem; margin-bottom: 0.25rem; }

.team-member .role {
    color: var(--navy);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-member p { font-size: 0.95rem; line-height: 1.7; opacity: 0.85; }

/* Team page specific - full bios */
.team-full { max-width: 1000px; margin: 0 auto; }

.team-bio {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.team-bio-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--cream);
    flex-shrink: 0;
    overflow: hidden;
}

.team-bio-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.team-bio-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--brown-dark);
    margin-bottom: 0.25rem;
}

.team-bio-text .role {
    color: var(--coral);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    display: block;
}

.team-bio-text p {
    color: var(--brown-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ==================== PARTNERS ==================== */
.partners {
    background: var(--cream);
    padding: 4rem 4%;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.partner-logo--sm { height: 20px; }

.partner-logo:hover { opacity: 1; }

.partner-logo img {
    height: 100%;
    width: auto;
    max-width: 120px;
    display: block;
    object-fit: contain;
}

/* ==================== NEWSLETTER ==================== */
.newsletter {
    background: var(--brown-dark);
    color: var(--cream);
    text-align: center;
}

.newsletter .section-title { color: var(--cream); }

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255,255,255,0.1);
    color: var(--cream);
}

.newsletter-form input::placeholder { color: rgba(250, 243, 232, 0.5); }

.newsletter-form button {
    background: var(--coral);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    font-size: 1rem;
}

.newsletter-form button:hover {
    background: var(--coral-light);
    transform: scale(1.05);
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--brown-dark);
    color: var(--cream);
    padding: 3rem 4% 2rem;
    border-top: 1px solid rgba(250, 243, 232, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links { display: flex; gap: 2rem; }

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover { opacity: 1; }

.footer-social { display: flex; gap: 1.5rem; align-items: center; }

.footer-social a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.footer-social a:hover { opacity: 1; color: var(--coral); }

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(250, 243, 232, 0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
    .nav-center, .nav-right .submit-film-link { display: none; }
    .nav-social { display: none; }
    .mobile-menu { display: flex; }
    .edition-card { grid-template-columns: 1fr; }
    .community-content { grid-template-columns: 1fr; }
    .experience-grid { grid-template-columns: 1fr; }
    .team-bio { grid-template-columns: 1fr; justify-items: center; text-align: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .venue-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    section { padding: 4rem 5%; }
    .newsletter-form { flex-direction: column; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { flex-direction: column; gap: 1rem; }
    .form-row { grid-template-columns: 1fr; }
    .edition-details { padding: 2rem 1.5rem; }
    .edition-cta { padding: 0.85rem 1.75rem; font-size: 0.9rem; margin-top: 0.75rem; }
    .edition-cta--secondary { margin-top: 0.75rem; }
}

/* ==================== CONTACT PAGE ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contact-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--brown-dark);
    margin-bottom: 0.75rem;
}

.contact-intro {
    color: var(--brown-medium);
    opacity: 0.85;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brown-dark);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.25rem;
    border: 1.5px solid var(--cream-dark);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--white);
    color: var(--brown-dark);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(232, 85, 85, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232D1F1F' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--brown-dark);
    color: var(--cream);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
}

.contact-submit:hover {
    background: var(--coral);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 85, 85, 0.3);
}

/* Contact info cards */
.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(45, 31, 31, 0.08);
}

.contact-card h3 {
    font-size: 1.15rem;
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
}

.contact-card > p {
    color: var(--brown-medium);
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--brown-dark);
    background: var(--cream);
    transition: all 0.3s;
}

.social-link-item:hover {
    background: var(--brown-dark);
    color: var(--cream);
    transform: translateX(4px);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--brown-dark);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}

.social-link-item:hover .social-icon {
    background: var(--coral);
}

.social-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.social-text strong {
    font-size: 0.95rem;
    font-weight: 600;
}

.social-text em {
    font-style: normal;
    font-size: 0.85rem;
    opacity: 0.7;
}

.contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--coral);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

.contact-email-link:hover { opacity: 0.7; }

/* Venue photo */
.venue-photo {
    max-width: 1100px;
    margin: 0 auto 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(45, 31, 31, 0.1);
}

.venue-photo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

/* Venue / Map */
.venue-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.venue-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.venue-address {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.venue-address strong {
    font-size: 1.15rem;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--brown-dark);
}

.venue-address p {
    color: var(--brown-medium);
    line-height: 1.7;
    margin: 0;
}

.venue-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.venue-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--brown-medium);
    font-size: 0.95rem;
    line-height: 1.5;
}

.venue-detail-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.venue-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--coral);
    color: var(--white);
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    width: fit-content;
}

.venue-directions-btn:hover {
    background: var(--coral-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 85, 85, 0.3);
}

.venue-map {
    border-radius: 20px;
    overflow: hidden;
    min-height: 380px;
    box-shadow: 0 15px 50px rgba(45, 31, 31, 0.12);
}

.venue-map .map-container {
    display: block;
    width: 100%;
    height: 100%;
}

.venue-map iframe {
    display: block;
    min-height: 380px;
}

/* ==================== HIGHLIGHTS / VIDEO EMBEDS ==================== */
.highlights {
    background: var(--brown-dark);
    color: var(--cream);
    padding: 4.5rem 4% 3.5rem;
}

.highlights-grid {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-card {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 240px;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.highlight-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.highlight-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(45, 31, 31, 0.85));
    color: var(--cream);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.highlights-tagline {
    text-align: center;
    margin-top: 2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--cream);
    opacity: 0.5;
}

@media (max-width: 600px) {
    .highlights-grid { flex-direction: column; align-items: center; gap: 1rem; }
    .highlight-card { width: 200px; }
    .highlight-card img { height: 280px; }
}

/* Community page hero with gosterim2 bg */
.page-hero.community-hero {
    position: relative;
    overflow: hidden;
    padding-top: 11rem;
    padding-bottom: 5rem;
}

.page-hero.community-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('gosterim2.jpg') center center / cover no-repeat;
    opacity: 0.4;
}

.page-hero.community-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(45, 31, 31, 0.55) 0%, rgba(45, 31, 31, 0.3) 100%);
}

.page-hero.community-hero .section-label,
.page-hero.community-hero .page-hero-title,
.page-hero.community-hero .page-hero-subtitle {
    position: relative;
    z-index: 2;
}

/* Contact page hero with picturehouse bg */
.page-hero.contact-hero {
    position: relative;
    overflow: hidden;
    padding-top: 14rem;
    padding-bottom: 8rem;
}

.page-hero.contact-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('picturehouse-venue.jpg') center 40% / cover no-repeat;
    opacity: 0.45;
}

.page-hero.contact-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(45, 31, 31, 0.55) 0%, rgba(45, 31, 31, 0.3) 100%);
}

.page-hero.contact-hero .section-label,
.page-hero.contact-hero .page-hero-title,
.page-hero.contact-hero .page-hero-subtitle {
    position: relative;
    z-index: 2;
}

/* ==================== ANIMATIONS ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* ==================== FORM SUCCESS MESSAGE ==================== */
.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 196, 204, 0.1);
    border-radius: 16px;
    border: 1px solid var(--cyan);
}

.form-success.show { display: block; }

.form-success h3 {
    color: var(--brown-dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--brown-medium);
    opacity: 0.85;
}

.newsletter-success {
    display: none;
    color: var(--cream);
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.newsletter-success.show { display: block; }

/* ==================== PROGRAMME PAGE ==================== */
.programme-page-hero {
    position: relative;
    overflow: hidden;
    padding-top: 11rem;
    padding-bottom: 5rem;
}

.programme-page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('taxi-monamour2.jpg') center center / cover no-repeat;
    opacity: 0.4;
}

.programme-page-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(45, 31, 31, 0.6) 0%, rgba(45, 31, 31, 0.35) 100%);
}

.programme-page-hero .section-label,
.programme-page-hero .page-hero-title,
.programme-page-hero .page-hero-subtitle {
    position: relative;
    z-index: 2;
}

/* Schedule Calendar */
.schedule { background: var(--cream); padding: 5rem 4%; }

.schedule-container {
    max-width: 1100px;
    margin: 0 auto;
}

.day-block {
    margin-bottom: 4rem;
}

.day-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.day-date {
    background: var(--coral);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 14px;
    text-align: center;
    min-width: 80px;
}

.day-date .day-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    display: block;
}

.day-date .day-month {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    opacity: 0.9;
}

.day-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--brown-dark);
}

.event-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--cream-dark);
}

.event-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(45, 31, 31, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    top: 2rem;
    width: 12px;
    height: 12px;
    background: var(--coral);
    border-radius: 50%;
    border: 3px solid var(--cream);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(45, 31, 31, 0.12);
}

.event-card-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.event-card--has-details .event-card-inner {
    grid-template-columns: 1fr;
}

.event-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brown-dark);
    color: var(--cream);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
}

.event-type-badge {
    display: inline-flex;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.event-type-badge--film {
    background: rgba(232, 85, 85, 0.12);
    color: var(--coral);
}

.event-type-badge--music {
    background: rgba(165, 148, 249, 0.15);
    color: var(--lavender-dark);
}

.event-type-badge--shorts {
    background: rgba(0, 196, 204, 0.12);
    color: var(--cyan);
}

.event-card-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
}

.event-card-image {
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 220px;
}

.event-content {
    padding: 2rem;
}

@media (max-width: 700px) {
    .event-card-layout {
        grid-template-columns: 1fr !important;
    }
    .event-card {
        border-radius: 16px !important;
        box-shadow: 0 4px 16px rgba(45, 31, 31, 0.12) !important;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        margin-bottom: 1rem;
        background: var(--white) !important;
        overflow: hidden !important;
    }
    .event-card-image {
        max-height: 240px;
        overflow: hidden;
    }
    .event-card-image img {
        height: 240px;
        width: 100% !important;
        object-fit: cover !important;
        display: block;
    }
    .event-content {
        padding: 1.25rem 1.25rem 1.5rem !important;
    }
    .event-content h3 {
        font-size: 1.25rem;
    }
    .event-links {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        margin-top: 0.75rem;
    }
    .event-link,
    .event-book-btn {
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.4rem !important;
        padding: 0.5rem 1rem !important;
        font-size: 0.78rem !important;
        border: 1.5px solid var(--cream-dark) !important;
        border-radius: 50px !important;
        background: transparent !important;
        color: var(--brown-dark) !important;
        text-decoration: none !important;
        font-weight: 500 !important;
    }
}

.event-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--brown-dark);
    margin: 0.75rem 0 0.25rem;
}

.event-content h3 .film-original {
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    color: var(--brown-medium);
    opacity: 0.7;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0.75rem 0 1rem;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--brown-medium);
    opacity: 0.85;
}

.event-description {
    color: var(--brown-medium);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.event-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.event-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    border: 1.5px solid var(--cream-dark);
    color: var(--brown-dark);
}

.event-link:hover {
    border-color: var(--coral);
    color: var(--coral);
    transform: translateY(-1px);
}

.event-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    color: var(--brown-dark);
    border: 1.5px solid var(--cream-dark);
    transition: all 0.3s;
}

.event-book-btn:hover {
    border-color: var(--coral);
    color: var(--coral);
    transform: translateY(-1px);
}

/* Shorts list */
.shorts-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.short-item {
    padding: 1.25rem;
    background: var(--cream);
    border-radius: 12px;
    border-left: 3px solid var(--cyan);
}

.short-item h4 {
    font-size: 0.95rem;
    color: var(--brown-dark);
    margin-bottom: 0.25rem;
}

.short-item p {
    font-size: 0.85rem;
    color: var(--brown-medium);
    opacity: 0.8;
    margin: 0;
}

.programme-cta-section {
    text-align: center;
    padding: 4rem 4%;
    background: var(--brown-dark);
}

.programme-cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: 1rem;
}

.programme-cta-section p {
    color: var(--cream);
    opacity: 0.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.programme-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--coral);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.programme-cta-btn:hover {
    background: var(--coral-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 85, 85, 0.4);
}

.programme-cta-btn--secondary {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(250, 243, 232, 0.5);
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.programme-cta-btn--secondary:hover {
    background: rgba(250, 243, 232, 0.15);
    border-color: var(--cream);
    box-shadow: none;
}

@media (max-width: 968px) {
    .event-timeline { padding-left: 1.5rem; }
    .event-card::before { left: -1.85rem; }
}

@media (max-width: 600px) {
    .day-header { flex-direction: column; align-items: flex-start; }
    .event-timeline { padding-left: 0; border-left: none; }
    .event-card::before { display: none; }
    .shorts-list { grid-template-columns: 1fr; }
    .schedule { padding: 3rem 3%; }
    .event-meta { gap: 0.5rem; }
    .event-meta span { font-size: 0.8rem; }
    .event-description { font-size: 0.9rem; line-height: 1.7; }
}
