@font-face {
    font-family: 'Lets Jazz';
    src: url('../fonts/LetsJazz-UnicaseFreebie.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Classica Gallic';
    src: url('../fonts/ClassicaGallic-W00 Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --color-dark: #222831;
    --color-light: #F4F4F4;
    --color-accent: #D4AF37;
    /* --font-heading: 'Playfair Display', serif; */
    /* --font-body: 'Montserrat', sans-serif; */
    /* --font-heading: 'Lets Jazz', sans-serif; */
    --font-body: 'Classica Gallic', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: background-color 0.3s ease;
}

.main-header.scrolled {
    position: fixed;
    background-color: var(--color-dark);
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
}

.logo-container h1 {
    font-size: 1.5rem;
    color: white;
    margin-left: 15px;
    font-family: var(--font-heading);
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 700;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--color-accent);
}

.main-footer {
    background: var(--color-dark);
    color: #ccc;
    text-align: center;
    padding: 30px 20px;
}

#hamburger-icon {
    display: none;
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
    border: none;
    background: transparent;
    z-index: 1001;
}

#hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 3px;
    left: 0;
    transition: all 0.25s ease-in-out;
}

#hamburger-icon span:nth-child(1) {
    top: 0px;
}

#hamburger-icon span:nth-child(2) {
    top: 10px;
}

#hamburger-icon span:nth-child(3) {
    top: 20px;
}

#hamburger-icon.is-active span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

#hamburger-icon.is-active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

#hamburger-icon.is-active span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

.cta-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--color-accent);
    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: var(--color-dark);
    color: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.logo-link {
    text-decoration: none;
}


/* --- TABLET BOYUTU (992px ve altı) --- */

@media (max-width: 992px) {
    .events-layout,
    .story-content,
    .director-spotlight {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .events-layout .map-container {
        position: relative;
        top: auto;
        height: 400px;
        margin-top: 30px;
    }
}


/* --- MOBİL BOYUTU (768px ve altı) --- */

@media (max-width: 768px) {
    .main-header .container {
        flex-direction: row;
    }
    #hamburger-icon {
        display: block;
    }
    #main-nav {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(34, 40, 49, 0.98);
        padding-top: 100px;
    }
    #main-nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    #main-nav ul li a {
        font-size: 1.5rem;
        padding: 20px;
        display: block;
    }
    /* İÇ SAYFA HERO BOŞLUKLARI */
    .page-hero {
        padding-top: 180px;
        padding-bottom: 50px;
    }
    .page-title,
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    .page-subtitle,
    .hero-subtitle {
        font-size: 1rem;
    }
    .section-title,
    .director-text h2,
    .contact-info h3 {
        font-size: 2rem;
    }
    .story-text h2 {
        font-size: 2.2rem;
    }
    /* İÇERİK BÖLÜMÜ BOŞLUKLARI */
    .story-section,
    .gallery-section,
    .team-section {
        padding: 40px 0;
    }
    .contact-layout {
        margin: 30px auto;
        width: 90%;
        padding: 0;
        box-shadow: none;
        background: transparent;
        gap: 40px;
    }
    .contact-info,
    .contact-form {
        padding: 30px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
    .contact-info {
        background: var(--color-dark);
        color: white;
    }
    /* GALERİ VE ÜYE KARTLARI */
    .gallery,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}