/* Kaleici Old Town — Site Styles */

:root {
    --stone: #F4EFE6;
    --stone-dark: #E8DFD2;
    --terracotta: #B84A1F;
    --terracotta-dark: #7A2E10;
    --midnight: #1C2333;
    --midnight-soft: #2A3347;
    --gold: #C9A227;
    --gold-light: #E8C547;
    --ink: #2A221C;
    --ink-muted: #5C5248;
    --white: #FEFCF9;
    --shadow-card: 0 8px 32px rgba(28, 35, 51, 0.12);
    --shadow-float: 0 20px 60px rgba(28, 35, 51, 0.18);
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Jost', 'Segoe UI', sans-serif;
    color: var(--ink);
    background-color: var(--stone);
    overflow-x: hidden;
    line-height: 1.6;
    margin: 0;
}

.font-display { font-family: 'Cormorant Garamond', Georgia, serif; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.row { display: flex; flex-wrap: wrap; margin: 0 -0.75rem; }
.clear { clear: both; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
[class*="col-"] { padding: 0 0.75rem; width: 100%; }

@media (min-width: 1024px) {
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.333%; }
    .col-lg-6 { width: 50%; }
    .col-lg-8 { width: 66.666%; }
    .col-lg-9 { width: 75%; }
}

.hidden-xs { display: none; }
.visible-xs { display: block; }
@media (min-width: 640px) {
    .hidden-xs { display: block; }
    .visible-xs { display: none; }
}

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-3 { gap: 0.75rem; }
.gap-6 { gap: 1.5rem; }
.ml-auto { margin-left: auto; }
.w-full { width: 100%; }
.w-7\/12 { width: 58.333%; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-25 { z-index: 25; }
.list-none { list-style: none; }
.m-0 { margin: 0; }
.p-0 { padding: 0; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-32 { padding-bottom: 8rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-2xl { border-radius: 1rem; }
.border-0 { border: 0; }
.border-b { border-bottom: 1px solid var(--stone-dark); }
.object-cover { object-fit: cover; }
.h-full { height: 100%; }
.text-2xl { font-size: 1.5rem; }
.text-sm { font-size: 0.875rem; }
.text-white { color: #fff; }
.text-xs { font-size: 0.75rem; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-none { line-height: 1; }
.block { display: block; }
.cursor-pointer { cursor: pointer; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }
.transition-colors { transition: color 0.2s, background 0.2s; }
.shadow-card { box-shadow: var(--shadow-card); }
.overflow-x-hidden { overflow-x: hidden; }

@media (min-width: 768px) {
    .col-md-6 { width: 50%; }
    .col-md-4 { width: 33.333%; }
    .mega-col { width: 33.333%; }
}

@media (min-width: 1024px) {
    .lg\:w-1\/3 { width: 33.333%; }
    .lg\:w-1\/4 { width: 25%; }
    .lg\:w-2\/3 { width: 66.666%; }
    .lg\:w-3\/4 { width: 75%; }
    .lg\:ml-\[25\%\] { margin-left: 25%; }
    .lg\:flex { display: flex !important; }
    .lg\:hidden { display: none !important; }
}

@media (max-width: 1023px) {
    .lg\:flex { display: none !important; }
    .lg\:hidden { display: flex !important; }
}

/* Header */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.site-header--home {
    background: linear-gradient(180deg, rgba(28,35,51,0.85) 0%, rgba(28,35,51,0.35) 70%, transparent 100%);
    padding: 0.75rem 0;
}

.site-header--home.scrolled {
    background: rgba(28,35,51,0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-card);
    padding: 0.5rem 0;
}

.site-header--inner {
    background: var(--midnight);
    padding: 0.625rem 0;
    box-shadow: var(--shadow-card);
    position: relative;
}

.site-header--inner.scrolled {
    padding: 0.4rem 0;
}

.site-header--inner::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--terracotta), var(--gold), #4A6B5D);
}

.site-header .header-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.nav-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-family: 'Jost', 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-link:hover {
    background: rgba(201,162,39,0.2);
    color: var(--gold-light);
}

.lang-pill {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s;
}

.lang-pill:hover {
    background: var(--gold);
    color: var(--midnight);
}

.nav-dropdown { position: relative; display: inline-block; }

.nav-dropdown-menu {
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 200px;
    padding: 0.5rem 0;
    background: var(--midnight-soft);
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-float);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: all 0.2s;
    z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.625rem 1.25rem;
    font-family: 'Jost', 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    color: var(--stone);
    text-decoration: none;
}

.nav-dropdown-menu a:hover {
    background: rgba(184,74,31,0.3);
    color: var(--gold-light);
}

.mega-menu {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 5rem;
    z-index: 300;
    background: var(--midnight);
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-float);
    padding: 1.5rem 1rem;
}

.mega-link {
    display: block;
    text-align: center;
    color: var(--stone);
    font-family: 'Jost', 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    margin: 0.25rem 0;
    border-radius: 0.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    transition: all 0.3s;
}

.mega-link:hover {
    background: rgba(184,74,31,0.3);
    border-color: var(--terracotta);
}

/* Sections */
.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--midnight);
    padding: 1.5rem 0;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    margin-top: 0.75rem;
    background: linear-gradient(90deg, var(--gold), var(--terracotta));
    border-radius: 2px;
}

.section-title--right::after,
.text-right.section-title::after { margin-left: auto; }
.section-title--center::after,
.text-center.section-title::after { margin: 0.75rem auto 0; }

.section-title a {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--terracotta);
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Cards */
.card-float {
    position: relative;
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-float);
    border: 1px solid var(--stone-dark);
    margin-top: -5rem;
    margin-bottom: 2.5rem;
    padding: 1.75rem;
    overflow: hidden;
}

.card-float::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta), var(--gold), #4A6B5D);
}

.program-card,
.gallery-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    margin-right: 1rem;
    width: 85%;
    max-width: 380px;
    opacity: 0.45;
    transition: all 0.35s;
    border-top: 3px solid transparent;
}

.program-card.is-selected,
.gallery-card.is-selected {
    opacity: 1;
    box-shadow: var(--shadow-float);
    transform: translateY(-4px);
    border-top-color: var(--terracotta);
}

.program-card .textHeader {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    color: var(--midnight);
    display: block;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px dashed var(--stone-dark);
}

.program-card .ulText { margin: 0.5rem 0 0; padding-left: 1.25rem; }
.program-card .ulText li { font-size: 0.9rem; color: var(--ink-muted); margin-bottom: 0.35rem; }

.gallery-card { padding: 0; height: 300px; overflow: hidden; border: none; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 1rem; }

/* News */
.news-card {
    position: relative;
    height: 420px;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); }
.news-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-card:hover img { transform: scale(1.05); }

.news-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.75rem;
    background: linear-gradient(transparent, rgba(28,35,51,0.9));
}

.news-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    color: var(--white);
    line-height: 1.3;
}

.news-excerpt { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-top: 0.5rem; }

/* Content pages */
.content-page-wrap {
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
    padding: 7rem 1.25rem 4rem;
    box-sizing: border-box;
}

.contentIcerikSub {
    position: relative;
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-float);
    border: 1px solid var(--stone-dark);
    padding: 2rem 1.75rem 3rem;
}

.content-page-title,
.contentMenuHeaderText {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--midnight);
    text-align: right;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--stone-dark);
    position: relative;
}

.content-page-title::after,
.contentMenuHeaderText::after {
    content: '';
    position: absolute;
    bottom: -2px; right: 0;
    width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--terracotta), var(--gold));
}

.content-body { text-align: justify; font-size: 1rem; line-height: 1.8; color: var(--ink-muted); }

.content-generic {
    margin-top: 0.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--ink-muted);
}

/* Contact page */
.contact-page { margin-top: 0.25rem; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        align-items: start;
    }
}

.contact-content-card {
    background: var(--stone);
    border: 1px solid var(--stone-dark);
    border-radius: 1rem;
    padding: 1.5rem 1.75rem;
}

.contact-content-body {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--ink-muted);
}

.contact-content-body p { margin: 0 0 1rem; }
.contact-content-body p:last-child { margin-bottom: 0; }
.contact-content-body a {
    color: var(--terracotta);
    font-weight: 500;
    text-decoration: none;
}
.contact-content-body a:hover { color: var(--terracotta-dark); text-decoration: underline; }
.contact-content-body strong { color: var(--midnight); }

.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--stone-dark);
    border-radius: 1rem;
    padding: 1.25rem 1.35rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-float);
}

.contact-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--terracotta), var(--gold));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.85rem;
}

.contact-info-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--midnight);
    margin: 0 0 0.4rem;
}

.contact-info-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--ink-muted);
}

.contact-info-text a {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-text a:hover { text-decoration: underline; }

.contact-map-section {
    background: var(--white);
    border: 1px solid var(--stone-dark);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.contact-map-header {
    padding: 1.25rem 1.5rem 1rem;
    border-bottom: 1px solid var(--stone-dark);
    background: linear-gradient(90deg, rgba(184, 74, 31, 0.06), rgba(201, 162, 39, 0.08));
}

.contact-map-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--midnight);
    margin: 0 0 0.25rem;
}

.contact-map-subtitle {
    margin: 0;
    font-size: 0.9rem;
    color: var(--ink-muted);
}

.contact-map-frame {
    position: relative;
    width: 100%;
    min-height: 320px;
    background: var(--stone-dark);
}

.contact-map-iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

@media (max-width: 640px) {
    .contact-map-iframe { height: 300px; }
}

.contact-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 1.5rem 1.25rem;
    padding: 0.65rem 1.25rem;
    border-radius: 9999px;
    background: var(--midnight);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.25s ease;
}

.contact-map-link:hover {
    background: var(--terracotta);
    color: var(--white);
}

.contact-map-link i { color: var(--gold-light); }

/* Partner businesses grid */
.partner-grid { margin-top: 0.5rem; }

.partner-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--stone-dark);
    height: 100%;
    margin-bottom: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-float);
}

.partner-card-image {
    height: 220px;
    overflow: hidden;
}

.partner-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.partner-card:hover .partner-card-image img { transform: scale(1.05); }

.partner-card-body { padding: 1.25rem 1.5rem 1.5rem; }

.partner-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--midnight);
    margin: 0 0 0.75rem;
}

.partner-card-address {
    font-size: 0.95rem;
    color: var(--ink-muted);
    margin: 0 0 1rem;
    line-height: 1.5;
}

.partner-card-address i { color: var(--terracotta); margin-right: 0.35rem; }

.partner-card-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.partner-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--terracotta);
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    background: rgba(184, 74, 31, 0.08);
    transition: background 0.2s, color 0.2s;
}

.partner-card-link:hover {
    background: var(--terracotta);
    color: var(--white);
}

.partner-place-card {
    display: block;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.partner-place-image {
    position: relative;
    height: 320px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.partner-place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.partner-place-card:hover .partner-place-image img { transform: scale(1.06); }

.partner-place-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1rem;
    background: linear-gradient(transparent, rgba(28, 35, 51, 0.92));
    color: var(--white);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    text-align: center;
}

/* Detail page gallery */
.detail-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .detail-gallery { grid-template-columns: repeat(3, 1fr); }
}

.detail-gallery-item {
    display: block;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 3px solid var(--stone-dark);
    background: var(--white);
    aspect-ratio: 4 / 3;
    transition: transform 0.2s, box-shadow 0.2s;
}

.detail-gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.detail-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Photo gallery page */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .photo-gallery { grid-template-columns: repeat(3, 1fr); gap: 1.125rem; }
}

@media (min-width: 1024px) {
    .photo-gallery { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

.photo-gallery-item {
    position: relative;
    display: block;
    border-radius: 0.875rem;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--stone-dark);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-float);
}

.photo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.photo-gallery-item:hover img {
    transform: scale(1.08);
}

.photo-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, transparent 30%, rgba(28, 35, 51, 0.55) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-gallery-item:hover .photo-gallery-overlay {
    opacity: 1;
}

.photo-gallery-overlay i {
    font-size: 1.75rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    transform: scale(0.85);
    transition: transform 0.3s ease;
}

.photo-gallery-item:hover .photo-gallery-overlay i {
    transform: scale(1);
}

/* Homepage news + sidebar */
.haber-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .haber-layout {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    }
}

.haber-main { min-width: 0; }

.haber-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 0;
}

.haber-facebook {
    width: 100%;
    max-width: 100%;
    min-height: 450px;
    box-shadow: none;
}

/* Participant cities grid */
.participant-grid { margin-top: 0.25rem; }

.participant-card {
    background: var(--white);
    border-radius: 1rem;
    border: 1px solid var(--stone-dark);
    box-shadow: var(--shadow-card);
    padding: 1.5rem 1.25rem;
    text-align: center;
    height: 100%;
    margin-bottom: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.participant-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-float);
}

.participant-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    margin-bottom: 1rem;
    padding: 0.5rem;
}

.participant-card-image img {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.participant-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--midnight);
    margin: 0;
    line-height: 1.3;
}

.yerBox {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: transform 0.3s;
    height: 100%;
}

.yerBox:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); }

.yerName {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    color: var(--white);
    padding: 3rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(28,35,51,0.9));
}

/* Social */
.social-bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50002;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.social-btn {
    background: var(--midnight);
    color: var(--stone);
    padding: 0.75rem 0.875rem;
    cursor: pointer;
    border-radius: 0.5rem 0 0 0.5rem;
    border: 1px solid rgba(201,162,39,0.15);
    border-right: none;
    transition: all 0.3s;
}

.social-btn:hover { background: var(--terracotta); color: var(--white); padding-left: 1.125rem; }

/* Scroll top */
#button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 2rem; right: 1.5rem;
    z-index: 100000;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--terracotta);
    color: var(--white);
    box-shadow: var(--shadow-card);
    border: 2px solid rgba(201,162,39,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    text-decoration: none;
}

#button.show { opacity: 1; visibility: visible; }
#button::after { content: '\f077'; font-family: FontAwesome; font-size: 1.1rem; }
#button:hover { background: var(--gold); transform: translateY(-3px); }

/* Loading */
.loading {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading::before { content: ''; position: fixed; inset: 0; background: var(--midnight); }
.loading::after {
    content: '';
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(201,162,39,0.2);
    border-top-color: var(--gold);
    animation: spin 1s linear infinite;
    position: relative; z-index: 1;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Mobile menu & modal */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000001;
    overflow-y: auto;
    background: linear-gradient(160deg, #1C2333 0%, #2A1A12 50%, #7A2E10 100%);
    font-family: 'Jost', 'Segoe UI', sans-serif;
}

.mobile-menu.open { display: block; }

.mobile-menu a,
.mobile-menu button {
    font-family: 'Jost', 'Segoe UI', sans-serif;
}

.site-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 90000000;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    padding: 1rem;
    font-family: 'Jost', 'Segoe UI', sans-serif;
}

.site-modal.open { display: flex; }

.site-modal-box {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-float);
    max-width: 32rem;
    width: 100%;
    overflow: hidden;
}

/* Utility colors in markup */
.bg-midnight { background-color: var(--midnight); }
.bg-terracotta { background-color: var(--terracotta); }
.bg-stone { background-color: var(--stone); }
.bg-terracotta-dark { background-color: var(--terracotta-dark); }
.text-midnight { color: var(--midnight); }
.text-gold-light { color: var(--gold-light); }
.text-stone { color: var(--stone); }
.border-stone-dark { border-color: var(--stone-dark); }
.border-white-30 { border: 1px solid rgba(255,255,255,0.3); }
.bg-midnight-80 { background-color: rgba(28,35,51,0.8); color: #fff; }
.bg-gold-light { background-color: var(--gold-light); }
.hover-text-gold-light:hover { color: var(--gold-light); }
.hover-bg-terracotta:hover { background-color: var(--terracotta); }

/* Logo & nav layout */
.site-logo img {
    width: 150px;
    max-width: 100%;
    margin-top: 4px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
    transition: width 0.3s ease, margin-top 0.3s ease;
}

.site-header.scrolled .site-logo img {
    width: 110px;
    margin-top: 2px;
}

.site-header--home .site-logo img {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
}

.header-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.nav-desktop {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.nav-mobile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.nav-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.lang-row {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
}

.lang-select {
    width: 4rem;
    padding: 0.375rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(28,35,51,0.8);
    color: #fff;
}

.mega-offset { margin-left: 0; }
.mega-grid { display: flex; flex-wrap: wrap; margin: 0 -0.5rem; }
.mega-col { width: 100%; padding: 0 0.5rem; }
.mega-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.125rem;
    color: var(--gold-light);
    text-align: center;
    margin: 0.5rem 0;
}

@media (min-width: 768px) {
    .mega-col { width: 33.333%; }
}

@media (min-width: 1024px) {
    .nav-desktop { display: flex; }
    .nav-mobile { display: none; }
    .mega-offset { margin-left: 25%; }
}

/* Flickity */
.flickityHizmetler { margin-bottom: 1.25rem; }
.program-carousel { margin-top: 1.5rem; }

@media (max-width: 768px) {
    .content-page-wrap { padding: 5.5rem 1rem 3rem; }
    .contentIcerikSub { padding: 1.5rem 1rem; }
    .card-float { margin-top: -3rem; padding: 1.25rem; }
    .news-card { height: 300px; }
    .social-bar { top: auto; bottom: 6rem; transform: none; flex-direction: row; right: 0.5rem; }
    .social-btn { border-radius: 0.5rem; border: 1px solid rgba(201,162,39,0.2); padding: 0.625rem; }
    .program-card, .gallery-card { width: 90%; }
}
