html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}
/* ========================================= */
/* 1. RENK PALETİ VE TEMEL AYARLAR           */
/* ========================================= */
:root {
    --orange: #FF6B00;
    --cream: #FDFBF7;
    --black: #111111;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ========================================= */
/* 2. NAVBAR (MENÜ) AYARLARI                 */
/* ========================================= */
.clean-navbar {
    width: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}

.brand-icon {
    background-color: var(--orange);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    font-size: 1.2rem;
}

.brand-text {
    color: var(--orange);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-item {
    text-decoration: none;
    color: #4A4A4A;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

.nav-item:hover { color: var(--orange); }
.nav-item.active { color: var(--orange); }

.nav-city {
    display: flex;
    align-items: center;
}

.city-name {
    color: var(--orange);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}
.city-name:hover { opacity: 0.8; }

/* ========================================= */
/* 3. ANA SAYFA (HERO) AYARLARI              */
/* ========================================= */
.hero-section {
    background-color: var(--orange);
    min-height: 100vh;
    min-height: -webkit-fill-available;
    width: 100%;
    position: relative;
}
.content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 10;
    padding: 0 20px;
}

.hero-typography {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.static-headline {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    line-height: 1;
}

.dynamic-headline {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    line-height: 1;
    min-height: 5.5rem;
}

.cursor {
    animation: blink 0.8s infinite;
    font-weight: 300;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.btn-main {
    background-color: var(--white);
    color: var(--orange);
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 900;
    padding: 20px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    display: inline-block;
}
.btn-main:active { transform: scale(0.95); }

/* ========================================= */
/* 4. SİYAH KAYAN BANT (TICKER) AYARLARI     */
/* ========================================= */
.ticker-wrap {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: var(--black);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    z-index: 20;
}

.ticker-wrap.static-ticker {
    position: relative;
    bottom: auto;
}

.ticker {
    display: inline-block;
    animation: tickerAnim 30s linear infinite;
}

.ticker a {
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 50px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}
.ticker a:hover { opacity: 0.7; }
.ticker-wrap:hover .ticker { animation-play-state: paused; }

.etkinlik-text { color: var(--orange); }
.gezi-text { color: var(--white); }

@keyframes tickerAnim {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================= */
/* 5. KEŞFET SAYFASI AYARLARI                */
/* ========================================= */
.split-screen-page {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 72px;
    position: relative;
}

.massive-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-title {
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
    transition: transform 0.3s ease;
}

.bg-cream { background-color: var(--cream); }
.text-orange { color: var(--orange); }
.bg-orange { background-color: var(--orange); }
.text-cream { color: var(--cream); }

.middle-ticker {
    position: relative;
    flex-shrink: 0;
    bottom: auto;
    top: auto;
    transform: none;
    z-index: 10;
    border-top: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    width: 100%;
}

/* ========================================= */
/* 6. GÜNLÜK MENÜ SAYFASI AYARLARI           */
/* ========================================= */
.menu-page .clean-navbar {
    position: sticky;
    top: 0;
    z-index: 999;
}

.menu-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 72px);
}

.menu-col {
    background-color: var(--orange);
    padding: 60px;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease;
}

.menu-col.light {
    background-color: var(--cream);
}

.menu-col-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.menu-col-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
}

.menu-col:not(.light) .menu-col-title { color: var(--white); }
.menu-col.light .menu-col-title { color: var(--black); }

.menu-date-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.menu-col:not(.light) .menu-date-label { color: rgba(255,255,255,0.6); }
.menu-col.light .menu-date-label { color: #aaa; }

.meal-toggle {
    display: flex;
    background: rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
    align-self: flex-start;
    flex-shrink: 0;
}

.menu-col.light .meal-toggle { background: rgba(0,0,0,0.07); }

.meal-toggle-btn {
    padding: 10px 24px;
    border-radius: 9px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.22s ease;
    font-family: inherit;
}

.meal-toggle-btn.active {
    background-color: var(--black);
    color: var(--white);
}

.menu-col.light .meal-toggle-btn.active {
    background-color: var(--orange);
    color: var(--white);
}

.meal-toggle-btn.inactive {
    background: transparent;
    color: rgba(255,255,255,0.7);
}

.menu-col.light .meal-toggle-btn.inactive { color: #999; }

.menu-items-list {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    transition: opacity 0.2s ease;
}

.menu-col.light .menu-item { border-bottom-color: rgba(0,0,0,0.07); }
.menu-item:last-child { border-bottom: none; }
.menu-item:hover { opacity: 0.8; }

.menu-item-name {
    font-size: 1.35rem;
    font-weight: 700;
}

.menu-item-type {
    font-size: 0.8rem;
    margin-top: 4px;
}

.menu-item-kcal {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 12px;
}

.menu-col:not(.light) .menu-item-name  { color: var(--white); }
.menu-col:not(.light) .menu-item-type  { color: rgba(255,255,255,0.55); }
.menu-col:not(.light) .menu-item-kcal  { background: rgba(255,255,255,0.15); color: var(--white); }

.menu-col.light .menu-item-name  { color: var(--black); }
.menu-col.light .menu-item-type  { color: #bbb; }
.menu-col.light .menu-item-kcal  { background: rgba(255,107,0,0.1); color: var(--orange); }

.stats-col {
    background-color: var(--black);
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stats-col-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -1px;
}

.stats-col-title span { color: var(--orange); }

.stats-total-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.stats-total-num {
    font-size: 5rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.stats-total-unit {
    font-size: 1.2rem;
    color: #555;
    font-weight: 500;
}

.macros-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.macro-row-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.macro-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.macro-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
}

.bar-track {
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 99px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 99px;
    transition: width 0.7s ease;
}

.bar-fat      { background-color: var(--orange); }
.bar-carb     { background-color: var(--white); }
.bar-protein  { background-color: #555; }

.rating-block {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}

.rating-emoji { font-size: 2.8rem; line-height: 1; }
.rating-text { flex: 1; }

.rating-big {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.rating-sub {
    font-size: 0.78rem;
    color: #555;
    margin-top: 4px;
}

.rating-pct {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--orange);
}

/* ========================================= */
/* 7. HAMBURGEr & MOBİL DRAWER               */
/* ========================================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-drawer {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    padding: 16px 20px;
    gap: 4px;
    position: fixed;
    top: 62px;
    left: 0;
    width: 100%;
    z-index: 998;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.mobile-drawer.open { display: flex; }

.mobile-drawer .nav-item {
    padding: 10px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-drawer .nav-item:last-child { border-bottom: none; }

/* ========================================= */
/* 8. ŞEHİR SEÇİM PANELİ                    */
/* ========================================= */
.city-panel {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 2px solid var(--black);
    z-index: 998;
    padding: 24px 60px 28px;
    animation: slidePanelDown 0.22s ease;
}

.city-panel.open { display: block; }

@keyframes slidePanelDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.city-panel-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #aaa;
    margin-bottom: 16px;
}

.city-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.city-btn {
    background: var(--cream);
    border: 1.5px solid transparent;
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s ease;
}

.city-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.city-btn.selected {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.city-name-arrow {
    display: inline-block;
    margin-left: 4px;
    font-size: 0.7rem;
    transition: transform 0.2s ease;
    vertical-align: middle;
}

.city-name.panel-open .city-name-arrow {
    transform: rotate(180deg);
}

.city-overlay {
    display: none;
    position: fixed;
    inset: 0;
    top: 72px;
    z-index: 997;
}
.city-overlay.open { display: block; }

/* ========================================= */
/* 9. ETKİNLİKLER SAYFASI AYARLARI           */
/* ========================================= */
.etkinlik-page .clean-navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--white);
}

/* Hero split banner */
.hero-split {
    display: flex;
    height: 64px;
    overflow: hidden;
    position: relative;
    font-family: 'Bebas Neue', sans-serif;
}

.hero-left {
    flex: 1;
    background: var(--black);
    display: flex;
    align-items: center;
    padding: 0 32px;
    clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}

.hero-right {
    flex: 1;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 32px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
    margin-left: -24px;
}

.hero-left span,
.hero-right span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 3px;
    color: var(--white);
}

/* Popular bölümü */
.section-popular {
    padding: 32px 0 8px;
    background: var(--white);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 20px;
}

.popular-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 6px;
}

.popular-title::before { content: '/*'; color: var(--black); }
.popular-title::after  { content: '*/'; color: var(--black); }

.btn-tumu {
    background: transparent;
    border: 1.5px solid var(--black);
    border-radius: 30px;
    padding: 7px 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--black);
    cursor: pointer;
    transition: all 0.18s;
    text-decoration: none;
}
.btn-tumu:hover {
    background: var(--black);
    color: var(--white);
}

/* Yatay scroll kartlar */
.cards-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 0 20px 20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.cards-scroll::-webkit-scrollbar { display: none; }

.event-card {
    flex-shrink: 0;
    width: 160px;
    cursor: pointer;
}

/* Afiş oranı: 2:3 (standart dikey afiş) */
.event-card-img {
    width: 160px;
    height: 240px; /* 160 * 1.5 = 240 → 2:3 oranı */
    border-radius: 14px;
    overflow: hidden;
    background: #1a1a1a;
    position: relative;
}

.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}
.event-card:hover .event-card-img img { transform: scale(1.04); }

.event-card-img .img-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.3);
    text-align: center;
    padding: 16px;
    z-index: 0;
}

.event-card-meta {
    padding: 10px 2px 0;
}

.event-card-date {
    font-size: 0.72rem;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.event-card-name {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-card-loc {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #999;
}

.event-card-loc svg {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

/* Divider */
.section-divider {
    margin: 8px 20px 0;
    height: 1px;
    background: rgba(0,0,0,0.07);
}

/* Kategori bölümü */
.section-kategori {
    background: var(--black);
    padding: 32px 20px 40px;
    margin-top: 8px;
}

.kategori-baslik {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
}

.kategori-baslik span { color: var(--orange); }

.kategori-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
}

.kategori-btn {
    background: #1c1c1c;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s, border-color 0.18s;
    text-align: left;
    text-decoration: none;
    flex: 0 0 auto;
    min-width: 100px;
    max-width: 100%;
    box-sizing: border-box;
}

.kategori-btn:hover {
    background: #222;
    border-color: var(--orange);
    transform: scale(1.02);
}

.kategori-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255,107,0,0.12);
    border: 1.5px solid rgba(255,107,0,0.25);
}

.kategori-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.kategori-info { min-width: 0; }

.kategori-isim {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    white-space: nowrap;
}

.kategori-sayi {
    font-size: 0.72rem;
    color: #666;
    margin-top: 3px;
    white-space: nowrap;
}

/* Skeleton loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.2s infinite;
    border-radius: 14px;
}
@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ========================================= */
/* 10. TABLET UYUM (769px — 1024px)          */
/* ========================================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .clean-navbar { padding: 16px 30px; }
    .nav-links { gap: 24px; }

    .menu-col  { padding: 40px 36px; }
    .stats-col { padding: 40px 36px; gap: 28px; }

    .menu-col-title  { font-size: 2.6rem; }
    .stats-col-title { font-size: 2.6rem; }
    .stats-total-num { font-size: 4rem; }
    .menu-item-name  { font-size: 1.1rem; }
    .meal-toggle-btn { padding: 9px 16px; }
    .rating-block    { padding: 20px 24px; }
    .rating-pct      { font-size: 2.2rem; }

    .split-screen-page { flex-direction: row; padding-top: 0; }
    .middle-ticker { display: none; }
    .btn-title { font-size: 4.5rem; }
    .massive-btn:hover { flex: 1.2; }
    .massive-btn:hover .btn-title { transform: scale(1.1); }

    .cards-scroll { padding: 0 40px 24px; }
    .section-header { padding: 0 40px 20px; }
    .kategori-grid { grid-template-columns: repeat(3, 1fr); }
    .section-kategori { padding: 40px 40px 48px; }
    .section-divider { margin: 8px 40px 0; }
    .event-card { width: 180px; }
    .event-card-img { width: 180px; height: 270px; }
}

/* ========================================= */
/* 11. MOBİL UYUM (max 768px)                */
/* ========================================= */
@media (max-width: 768px) {
    /* Navbar */
    .clean-navbar { padding: 15px 20px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .brand-text { font-size: 1.2rem; }
    .city-name { font-size: 1rem; }

    /* Hero */
    .static-headline  { font-size: 2.2rem; margin-bottom: 5px; }
    .dynamic-headline { font-size: 2.2rem; min-height: 2.8rem; }
    .hero-typography  { margin-bottom: 40px; }
    .btn-main { font-size: 1.3rem; padding: 15px 30px; }

    /* Ticker */
    .ticker a { font-size: 0.9rem; margin-right: 30px; }
    .ticker-wrap { padding: 12px 0; }

    /* Keşfet */
    .btn-title { font-size: 2.5rem; }

    /* Menü sayfası grid → tek kolon */
    .menu-main {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .menu-col  { padding: 32px 20px 28px; }
    .stats-col { padding: 32px 20px 36px; gap: 24px; }

    .menu-col-title  { font-size: 2rem; }
    .stats-col-title { font-size: 2rem; }
    .stats-total-num { font-size: 3.5rem; }
    .stats-total-unit { font-size: 1rem; }

    .menu-item      { padding: 16px 0; }
    .menu-item-name { font-size: 1.1rem; }

    .meal-toggle-btn { padding: 9px 16px; font-size: 0.85rem; }
    .menu-date-label { margin-bottom: 20px; }

    .rating-block { padding: 20px; border-radius: 12px; }
    .rating-big   { font-size: 1rem; }
    .rating-pct   { font-size: 2rem; }
    .rating-emoji { font-size: 2.2rem; }

    /* Şehir paneli */
    .city-panel {
        padding: 20px 20px 24px;
        top: 60px;
    }
    .city-overlay { top: 60px; }
    .city-btn { padding: 7px 16px; font-size: 0.85rem; }

    /* Etkinlikler hero */
    .hero-left  { padding: 0 20px; }
    .hero-right { padding: 0 20px; }
    .hero-left span,
    .hero-right span { font-size: 1.3rem; }
}