/* ==========================================================================
   Bornova Belediyesi 2. Geleneksel Reçel Festivali - Design System & Styles
   ========================================================================== */

:root {
    --bornova-red: #be1622;
    --bornova-red-dark: #970f19;
    --bornova-red-light: #e63946;
    --poster-green: #5c7c29;
    --poster-green-dark: #445d1d;
    --poster-green-light: #7da53b;
    --fig-purple: #6b2d5c;
    --lemon-gold: #f4a261;
    --cream-bg: #faf7f2;
    --text-dark: #2b2b2b;
    --text-muted: #666666;
    --border-light: rgba(190, 22, 34, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.92);
    --glass-border: rgba(255, 255, 255, 0.7);
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(190, 22, 34, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.14);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--cream-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

.bg-light {
    background-color: #f3efe8;
}

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

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
}

.handwritten-highlight {
    font-family: 'Caveat', cursive;
    color: var(--bornova-red);
    font-size: 1.25em;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.handwritten-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--lemon-gold);
    border-radius: 2px;
    transform: rotate(-1deg);
}

/* Announcement Top Bar */
.announcement-bar {
    background: linear-gradient(90deg, var(--bornova-red-dark), var(--bornova-red));
    color: #ffffff;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.announcement-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 700;
    transition: var(--transition);
}

.announcement-link:hover {
    color: var(--lemon-gold);
}

/* Header & Navbar */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.bornova-official-logo {
    height: 54px;
    width: auto;
    object-fit: contain;
}

.brand-divider {
    width: 1px;
    height: 36px;
    background-color: var(--border-light);
}

.festival-brand-badge {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--bornova-red);
    letter-spacing: 0.5px;
}

.badge-sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--poster-green);
    text-transform: uppercase;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.4rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--bornova-red);
}

.nav-link.highlight {
    color: var(--bornova-red);
    font-weight: 700;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--bornova-red);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--bornova-red);
    cursor: pointer;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: linear-gradient(135deg, var(--bornova-red), var(--bornova-red-dark));
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--bornova-red-light), var(--bornova-red));
}

.btn-secondary {
    background: linear-gradient(135deg, var(--poster-green), var(--poster-green-dark));
    color: #ffffff;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(92, 124, 41, 0.3);
}

.btn-outline {
    background: transparent;
    border-color: var(--bornova-red);
    color: var(--bornova-red);
}

.btn-outline:hover {
    background: var(--bornova-red);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.88rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Red-White Gingham Corner Pattern */
.gingham-corner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 280px;
    background-image: 
        linear-gradient(45deg, rgba(190, 22, 34, 0.15) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(190, 22, 34, 0.15) 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, rgba(190, 22, 34, 0.15) 75%), 
        linear-gradient(-45deg, transparent 75%, rgba(190, 22, 34, 0.15) 75%);
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
    mask-image: radial-gradient(circle at top left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
    -webkit-mask-image: radial-gradient(circle at top left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 4rem 0 5rem;
    background: radial-gradient(circle at 80% 20%, rgba(244, 162, 97, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 10% 80%, rgba(190, 22, 34, 0.08) 0%, transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.municipality-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(190, 22, 34, 0.08);
    color: var(--bornova-red);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.hero-slogan {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

/* Festival Title Card */
.festival-title-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.2rem 1.8rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 2px dashed rgba(190, 22, 34, 0.2);
    margin-bottom: 1.5rem;
    width: fit-content;
}

.jam-jar-illustration {
    width: 60px;
    height: 70px;
    position: relative;
    background: #e63946;
    border-radius: 12px 12px 18px 18px;
    box-shadow: inset -6px 0 12px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.jar-lid-cloth {
    position: absolute;
    top: -8px;
    width: 70px;
    height: 20px;
    background-image: repeating-linear-gradient(45deg, #be1622, #be1622 8px, #ffffff 8px, #ffffff 16px);
    border-radius: 6px 6px 2px 2px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.jar-glass {
    font-size: 1.2rem;
    display: flex;
    gap: 2px;
}

.festival-main-title .sub-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.festival-main-title .title-text {
    font-size: 2.2rem;
    color: var(--bornova-red);
    font-weight: 800;
    margin: 0;
}

.festival-main-title .highlight-word {
    color: var(--fig-purple);
}

/* Event Meta Badges */
.event-meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.meta-badge.green-badge {
    background-color: var(--poster-green);
    color: #ffffff;
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(92, 124, 41, 0.25);
    transition: var(--transition);
}

.meta-badge.green-badge:hover {
    transform: translateY(-2px);
    background-color: var(--poster-green-dark);
}

/* Countdown Card */
.countdown-card {
    padding: 1.4rem;
    margin-bottom: 2rem;
    max-width: 480px;
}

.countdown-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bornova-red);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.time-block {
    text-align: center;
    background: rgba(190, 22, 34, 0.05);
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-sm);
    min-width: 68px;
}

.time-block span {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--bornova-red-dark);
    line-height: 1;
}

.time-block small {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
}

.time-colon {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bornova-red);
}

.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Hero Poster Image Card */
.poster-display-frame {
    position: relative;
    padding: 1rem;
    border: 3px solid rgba(190, 22, 34, 0.2);
    box-shadow: var(--shadow-lg);
    background: #ffffff;
    border-radius: var(--radius-lg);
}

.poster-tag {
    position: absolute;
    top: -14px;
    right: 20px;
    background: var(--bornova-red);
    color: #ffffff;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(190, 22, 34, 0.3);
}

.poster-image-link {
    display: block;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.official-poster-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    transition: transform 0.5s ease;
}

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(190, 22, 34, 0.75);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    opacity: 0;
    transition: var(--transition);
}

.poster-image-link:hover .official-poster-img {
    transform: scale(1.04);
}

.poster-image-link:hover .poster-overlay {
    opacity: 1;
}

/* News Hub & Tabs Styling */
.news-tabs-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.news-tab-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
    min-width: 280px;
    box-shadow: var(--shadow-sm);
}

.news-tab-btn i {
    font-size: 1.4rem;
    color: var(--bornova-red);
    margin-bottom: 0.4rem;
}

.news-tab-btn span {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-dark);
}

.news-tab-btn small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.news-tab-btn:hover, .news-tab-btn.active {
    border-color: var(--bornova-red);
    background: linear-gradient(135deg, #ffffff, #fff5f5);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.news-tab-btn.active span {
    color: var(--bornova-red);
}

.news-detail-card {
    padding: 3rem;
    background: #ffffff;
}

.news-detail-card.hidden {
    display: none;
}

.news-header-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.news-category-badge {
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.news-category-badge.red {
    background: rgba(190, 22, 34, 0.1);
    color: var(--bornova-red);
}

.news-category-badge.green {
    background: rgba(92, 124, 41, 0.1);
    color: var(--poster-green-dark);
}

.news-date-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.article-title {
    font-size: 2rem;
    color: var(--bornova-red-dark);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.lead-news-text {
    font-size: 1.15rem;
    color: #222222;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 1.4rem;
}

.news-detail-card p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

/* Info Highlight Box */
.info-highlight-box {
    background: linear-gradient(135deg, #f3f8ee, #e8f3de);
    border: 2px solid var(--poster-green-light);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    margin: 2rem 0;
}

.info-highlight-box h4 {
    color: var(--poster-green-dark);
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.info-highlight-box p {
    color: #2b3a1a;
    font-size: 0.98rem;
    margin-bottom: 0.6rem;
}

/* Mayor Quote Box */
.mayor-quote-box {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, #fff7f7, #fffaf5);
    border-left: 5px solid var(--bornova-red);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
}

.quote-icon {
    font-size: 2.4rem;
    color: var(--bornova-red);
    opacity: 0.8;
}

.quote-body h4 {
    font-size: 1.25rem;
    color: var(--bornova-red);
    margin-bottom: 0.8rem;
}

.quote-text {
    font-style: italic;
    font-size: 1.05rem;
    color: #2b2b2b;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.quote-author strong {
    display: block;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.quote-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-photo-gallery {
    margin-top: 2.5rem;
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
}

.article-photo-gallery h4 {
    font-size: 1.3rem;
    color: var(--bornova-red);
    margin-bottom: 1.2rem;
}

/* Tasting Schedule Grid */
.tasting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.tasting-card {
    padding: 1.5rem;
    display: flex;
    gap: 1.4rem;
    align-items: center;
    background: #ffffff;
    transition: var(--transition);
}

.tasting-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tasting-date-badge {
    width: 80px;
    height: 90px;
    background: var(--poster-green);
    color: #ffffff;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(92, 124, 41, 0.3);
}

.tasting-date-badge.red-badge {
    background: var(--bornova-red);
    box-shadow: 0 4px 12px rgba(190, 22, 34, 0.3);
}

.tasting-date-badge .day-num {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.tasting-date-badge .month-name {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.tasting-date-badge .day-name {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
}

.tasting-details h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.time-info {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--bornova-red);
    margin-bottom: 0.4rem;
}

.tasting-details p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.highlight-tasting {
    border: 2px solid var(--bornova-red);
    background: linear-gradient(135deg, #ffffff, #fff5f5);
}

.final-tag {
    display: inline-block;
    background: var(--bornova-red);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

/* Photo Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    background: #ffffff;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

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

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

.gallery-caption {
    padding: 1rem;
}

.gallery-caption h4 {
    font-size: 1rem;
    color: var(--bornova-red);
    margin-bottom: 0.3rem;
}

.gallery-caption p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Official Poster Showcase Section */
.poster-full-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    padding: 2.5rem;
    align-items: center;
    background: #ffffff;
}

.full-poster-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.08);
}

.poster-details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-logo {
    height: 50px;
    width: auto;
}

.poster-headline {
    font-size: 1.8rem;
    color: var(--bornova-red);
}

.poster-description {
    color: var(--text-muted);
    font-size: 1rem;
}

.poster-info-list {
    display: grid;
    gap: 1.2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: var(--cream-bg);
    border-radius: var(--radius-md);
}

.info-item i {
    font-size: 1.5rem;
}

.info-item i.icon-red { color: var(--bornova-red); }
.info-item i.icon-green { color: var(--poster-green); }
.info-item i.icon-purple { color: var(--fig-purple); }

.info-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.info-item p {
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
    color: var(--bornova-red-dark);
}

.mayor-note-box {
    border-left: 4px solid var(--poster-green);
    padding-left: 1rem;
}

.mayor-signature {
    font-family: 'Caveat', cursive;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.mayor-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Timeline Schedule Section */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    padding-left: 2rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 45px;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--bornova-red), var(--poster-green));
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.time-badge {
    width: 70px;
    height: 70px;
    background: var(--bornova-red);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(190, 22, 34, 0.3);
    z-index: 2;
    border: 4px solid #f3efe8;
}

.timeline-card {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    transition: var(--transition);
}

.timeline-card:hover {
    transform: translateX(8px);
}

.accent-border {
    border-left: 5px solid var(--poster-green);
    background: #ffffff;
}

.badge-accent {
    display: inline-block;
    background: var(--poster-green);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.card-icon {
    font-size: 1.8rem;
    color: var(--bornova-red);
    margin-top: 0.2rem;
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.location-tag {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--poster-green);
}

/* Transportation & Google Maps Embed */
.transport-info-cards {
    display: grid;
    gap: 1.2rem;
}

.transport-card {
    padding: 1.5rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.trans-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.trans-icon.red { background: var(--bornova-red); }
.trans-icon.green { background: var(--poster-green); }
.trans-icon.orange { background: var(--lemon-gold); }

.google-maps-card {
    padding: 1.2rem;
    background: #ffffff;
    overflow: hidden;
    border: 2px solid var(--border-light);
}

.map-card-header {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--bornova-red);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.google-maps-wrapper {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.google-maps-wrapper iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, #1f1414, #120a0a);
    color: #e0e0e0;
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-bornova-logo {
    height: 56px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #aaaaaa;
}

.footer-links h4, .footer-contact h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    color: #aaaaaa;
}

.footer-contact a {
    color: var(--lemon-gold);
    text-decoration: none;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--bornova-red);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: #888888;
}

/* Responsive Rules & Mobile Header Optimizations */
@media (max-width: 992px) {
    .brand-divider, 
    .festival-brand-badge {
        display: none !important;
    }
    
    .bornova-official-logo {
        height: 40px !important;
        width: auto !important;
    }
    
    .header-container {
        height: 68px !important;
        padding: 0 0.8rem !important;
    }
    
    .header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 0.4rem !important;
        flex-shrink: 0 !important;
    }
    
    .header-actions .btn {
        padding: 0.45rem 0.85rem !important;
        font-size: 0.8rem !important;
        white-space: nowrap !important;
        border-radius: 9999px !important;
        flex-shrink: 0 !important;
        height: auto !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1 !important;
    }

    .hero-grid, .grid-2-cols, .poster-full-container, .tasting-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-slogan {
        font-size: 2.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important;
        height: 40px !important;
        flex-shrink: 0 !important;
        background: rgba(190, 22, 34, 0.08) !important;
        border-radius: 10px !important;
        font-size: 1.25rem !important;
        color: var(--bornova-red) !important;
        border: none !important;
        margin: 0 !important;
    }

    .nav-menu.active {
        display: block;
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        border-bottom: 3px solid var(--bornova-red);
        z-index: 999;
    }

    .nav-menu.active ul {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu.active .nav-link {
        font-size: 1.05rem;
        padding: 0.5rem 0;
        display: block;
    }

    .mayor-quote-box {
        flex-direction: column;
    }

    .news-tabs-container {
        flex-direction: column;
    }

    .news-tab-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }

    .announcement-content {
        justify-content: center;
        text-align: center;
    }

    .hero-section {
        padding: 2rem 0 3rem;
    }

    .hero-slogan {
        font-size: 1.75rem;
    }

    .festival-title-card {
        padding: 0.8rem 1rem;
        width: 100%;
    }

    .festival-main-title .title-text {
        font-size: 1.45rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .hero-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .event-meta-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .meta-badge.green-badge {
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.55rem 0.8rem;
    }

    .section-padding {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .kiraz-toggle-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 0.85rem 1rem;
    }
}

@media (max-width: 480px) {
    .bornova-official-logo {
        height: 36px !important;
    }

    .header-actions .btn {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.74rem !important;
        gap: 0.25rem !important;
    }

    .header-actions .btn i {
        font-size: 0.82rem !important;
    }

    .countdown-timer {
        gap: 0.25rem;
    }

    .time-block span {
        font-size: 1.3rem;
    }

    .time-block small {
        font-size: 0.6rem;
    }
}

/* Video Showcase Styles */
.videos-section {
    background: radial-gradient(circle at 50% 50%, rgba(190, 22, 34, 0.04) 0%, transparent 60%);
}

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

.video-card {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.95);
}

.video-card-header {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--bornova-red);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-responsive-wrapper {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #000000;
}

.video-responsive-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card-footer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.text-red {
    color: #ff0000;
}

/* Kiraz Showcase Card & Toggle Button */
.kiraz-toggle-btn {
    padding: 1rem 2.2rem;
    font-size: 1.15rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 6px 18px rgba(190, 22, 34, 0.25);
    cursor: pointer;
    transition: var(--transition);
}

.kiraz-toggle-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(190, 22, 34, 0.35);
}

.kiraz-expandable-panel {
    transition: all 0.4s ease-in-out;
}

.kiraz-expandable-panel.hidden {
    display: none;
}

.kiraz-showcase-card {
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 576px) {
    .kiraz-showcase-card {
        padding: 1.2rem;
    }
}




