/* =========================================== */
/* MARMARIS EVENTS - STYLE.CSS */
/* FESTİVAL VE ETKİNLİK SİTESİ */
/* =========================================== */

/* RESET & VARIABLES - YENİ RENK PALETİ */
:root {
    --primary: #FF6B35;
    --primary-dark: #E05A2C;
    --secondary: #F08A5D;
    --accent: #FFD93D;
    --dark: #2C3E50;
    --darker: #1A252F;
    --light: #ffffff;
    --gray: #94a3b8;
    --gray-dark: #475569;
    --blue-accent: #4A90E2;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
    --radius: 15px;
    --radius-sm: 10px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

/* ==================== */
/* NAVBAR */
/* ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 37, 47, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    text-decoration: none;
}

.brand-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--light);
}

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 2px solid var(--primary);
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    background: var(--primary);
    transform: scale(1.05);
}

.menu-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--light);
}

.hamburger {
    width: 20px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--light);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-btn.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== */
/* ORTA POPUP MENÜ - DÜZENLENMİŞ */
/* ==================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-menu-container {
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    background: var(--dark);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-container {
    transform: scale(1);
}

.mobile-menu-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.mobile-logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--light);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.mobile-menu-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

/* ==================== */
/* 2 SÜTUNLU MENÜ İÇERİĞİ */
/* ==================== */
.mobile-menu-content {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    flex-grow: 1;
    align-content: start;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--light);
    transition: all 0.3s;
    border-left: 4px solid var(--item-color);
}

.mobile-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.mobile-menu-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--item-color);
    flex-shrink: 0;
}

.mobile-menu-text {
    flex: 1;
    min-width: 0;
}

.mobile-menu-text h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 3px;
}

.mobile-menu-text p {
    font-size: 0.8rem;
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-menu-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.mobile-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.mobile-social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* ==================== */
/* HERO SECTION - BÜYÜTÜLMÜŞ YAZILAR */
/* ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(255, 107, 53, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.festival-count {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(5px);
    padding: 12px 30px;
    border-radius: 40px;
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 600;
    border: 1px solid var(--primary);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.festival-count span {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 5rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--light);
    text-shadow: 3px 3px 0 var(--primary),
                 5px 5px 0 rgba(0, 0, 0, 0.3),
                 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
    color: var(--primary);
    display: inline-block;
    transform: scale(1.05);
    text-shadow: 2px 2px 0 var(--light),
                 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.8rem;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5),
                 0 0 30px rgba(255, 107, 53, 0.4);
    line-height: 1.4;
}

.countdown-box {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--radius);
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.countdown-item {
    text-align: center;
}

.countdown-item .number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1;
}

.countdown-item .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.7;
}

.next-festival-name {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.next-festival-name a {
    color: var(--light);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--light);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
}

/* ==================== */
/* FEATURED FESTIVAL */
/* ==================== */
.featured-section {
    padding: 80px 0;
    background: var(--dark);
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.featured-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.featured-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--primary);
}

.featured-meta i {
    margin-right: 5px;
}

.featured-description {
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.8;
}

.featured-buttons {
    display: flex;
    gap: 15px;
}

/* ==================== */
/* CATEGORY FILTERS */
/* ==================== */
.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0;
}

.filter-btn {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 30px;
    color: var(--light);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
}

.filter-btn i {
    margin-right: 8px;
}

/* ==================== */
/* FESTIVAL GRID */
/* ==================== */
.festivals-section {
    padding: 60px 0 80px;
    background: var(--darker);
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--light);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.festival-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
}

.festival-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.festival-card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.festival-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.festival-image .single-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s;
}

.festival-card:hover .single-image {
    transform: scale(1.1);
}

.festival-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.festival-date-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
}

.festival-date-badge i {
    margin-right: 5px;
    color: var(--primary);
}

.festival-content {
    padding: 20px;
}

.festival-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--light);
}

.festival-location {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 10px;
}

.festival-location i {
    margin-right: 5px;
    color: var(--primary);
}

.festival-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
    color: var(--gray);
}

/* ==================== */
/* STATS SECTION */
/* ==================== */
.stats-section {
    padding: 60px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,107,53,0.1) 0%, rgba(255,217,61,0.1) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255,107,53,0.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ==================== */
/* FOOTER */
/* ==================== */
.footer {
    background: var(--dark);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--light);
    padding-left: 5px;
}

.footer-links a i {
    color: var(--primary);
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

/* ==================== */
/* UTILITIES */
/* ==================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== */
/* FESTIVAL SLIDER */
/* ==================== */
.festival-slider-section {
    padding: 60px 0;
    background: var(--darker);
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slider-item:hover img {
    transform: scale(1.05);
}

.slider-festival-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 10;
    border: 3px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

.slider-festival-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.slider-festival-info h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.slider-festival-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.slider-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 5px 15px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    font-size: 1rem;
}

.slider-meta-item i {
    color: #FF6B35;
    font-size: 1rem;
}

.slider-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
    max-width: 80%;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.slider-btn-small {
    display: inline-block;
    padding: 10px 25px;
    background: #FF6B35;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

.slider-btn-small:hover {
    background: #e05a2c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,107,53,0.4);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.7);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: #FF6B35;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dots .dot.active {
    background: #FF6B35;
    transform: scale(1.2);
}

/* ==================== */
/* FOTOĞRAF GALERİSİ */
/* ==================== */
.festival-gallery {
    margin: 50px 0;
}

.festival-gallery h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(255, 107, 53, 0.9);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    opacity: 0;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.festival-video {
    margin: 50px 0;
}

.festival-video h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* ==================== */
/* RESPONSIVE */
/* ==================== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .festival-count {
        font-size: 1.1rem;
        padding: 8px 20px;
    }
    
    .festival-count span {
        font-size: 1.4rem;
    }
    
    .mobile-menu-content {
        grid-template-columns: 1fr;
    }
    
    .featured-card {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .featured-content {
        padding: 30px;
    }
    
    .festival-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .slider-festival-badge {
        top: 15px;
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .slider-festival-info {
        padding: 20px 15px;
    }
    
    .slider-festival-info h3 {
        font-size: 1.3rem;
    }
    
    .slider-festival-meta {
        gap: 8px;
    }
    
    .slider-meta-item {
        padding: 3px 10px;
        font-size: 0.8rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .festival-count {
        font-size: 1rem;
        padding: 6px 15px;
    }
    
    .festival-count span {
        font-size: 1.2rem;
    }
    
    .festival-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-item .number {
        font-size: 1.5rem;
    }
    
    .countdown-item .label {
        font-size: 0.6rem;
    }
    
    .featured-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .slider-festival-info h3 {
        font-size: 1.1rem;
    }
    
    .slider-meta-item {
        padding: 2px 8px;
        font-size: 0.7rem;
    }
}

/* Video container düzenlemeleri */
.video-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
}

.video-container video {
    width: 100%;
    height: auto;
    max-height: 450px;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .video-container video {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .video-container video {
        max-height: 250px;
    }
}