/* -------------------------------------------------- */
/* TASARIM SİSTEMİ & DEĞİŞKENLER                      */
/* -------------------------------------------------- */
:root {
    --color-haki-deep: #2C3E35;
    --color-haki-mid: #1E2B24;
    --color-haki-dark: #121A16;
    --color-haki-light: #3D5448;
    --color-cream: #F7F5F0;
    --color-gold: #C5A880;
    --color-gold-hover: #B39770;
    --color-text-dark: #1F2E26;
    --color-text-muted: #6B7C72;
    --color-white: #FFFFFF;
    
    --font-serif: "Lora", Georgia, serif;
    --font-sans: "Inter", system-ui, -apple-system, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-subtle: 0 4px 30px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 10px 40px rgba(18, 26, 22, 0.08);
}

/* -------------------------------------------------- */
/* TEMEL SIFIRLAMALAR & YALINLAŞTIRMA                 */
/* -------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--color-cream);
    color: var(--color-text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    animation: fadeInPage 0.4s ease-in-out forwards;
    opacity: 0;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* -------------------------------------------------- */
/* BAŞLIK & METİN HİYERARŞİSİ                         */
/* -------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--color-haki-deep);
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* -------------------------------------------------- */
/* BUTONLAR                                           */
/* -------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition-smooth);
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-haki-dark);
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-haki-dark);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

/* -------------------------------------------------- */
/* HEADER & DOLAŞIM                                   */
/* -------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    padding: 14px 0;
    background-color: rgba(18, 26, 22, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-image {
    height: 48px;
    transition: var(--transition-smooth);
    filter: brightness(0) invert(1);
}

.site-header.scrolled .logo-image {
    height: 38px;
}

.main-navigation .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 6px 0;
}

.site-header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.site-header.scrolled .nav-link.active,
.site-header.scrolled .nav-link:hover {
    color: var(--color-gold);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobil Menü Tetikleyici */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.nav-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
}

/* -------------------------------------------------- */
/* HERO BÖLÜMÜ                                        */
/* -------------------------------------------------- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('https://www.tamammeyhane.com/wp-content/uploads/2023/05/tamam-background-fall-2023.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    pointer-events: none;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 2px;
    animation: scrollMouse 1.6s ease-in-out infinite;
}

@keyframes scrollMouse {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 26, 22, 0.95) 0%, rgba(18, 26, 22, 0.75) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: 24px;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.25;
    margin-bottom: 24px;
    color: var(--color-white);
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
}

/* -------------------------------------------------- */
/* FLOATING WHATSAPP BUTTON (YANARLI DÖNERLİ)        */
/* -------------------------------------------------- */
.whatsapp-floating-btn {
    display: none !important; /* Geçici olarak gizlendi, daha sonra geri açılabilir */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: var(--color-white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition-smooth);
    animation: whatsapp-glow 2s infinite alternate, whatsapp-bounce 3s infinite;
}

.whatsapp-floating-btn i {
    font-size: 1.3rem;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-badge-text {
    font-family: var(--font-sans);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Yanarlı Dönerli Parlama ve Nabız Animasyonu */
@keyframes whatsapp-glow {
    0% {
        box-shadow: 0 0 10px rgba(37, 211, 102, 0.5), 0 0 0 0px rgba(37, 211, 102, 0.4);
    }
    100% {
        box-shadow: 0 0 25px rgba(37, 211, 102, 0.8), 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* Hafif Salınım Animasyonu */
@keyframes whatsapp-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .whatsapp-floating-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}


/* -------------------------------------------------- */
/* ROZETLER / BAŞARI GÖSTERGELERİ                     */
/* -------------------------------------------------- */
.badges-section {
    padding: 60px 0;
    background-color: var(--color-haki-dark);
    margin-top: -60px;
    position: relative;
    z-index: 5;
    border-radius: 12px 12px 0 0;
    border-top: 1px solid rgba(197, 168, 128, 0.2);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.badge-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px 24px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
}

.badge-card:hover {
    border-color: rgba(197, 168, 128, 0.3);
    background-color: rgba(255, 255, 255, 0.04);
}

.badge-card.primary-badge {
    background-color: rgba(197, 168, 128, 0.08);
    border: 1px solid rgba(197, 168, 128, 0.25);
}

.badge-card.primary-badge .badge-title {
    color: var(--color-white);
}

.badge-icon-wrapper {
    margin-bottom: 20px;
}

.badge-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 14px;
}

.badge-card .badge-title {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.badge-subtitle {
    font-size: 0.8rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.badge-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .badges-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* -------------------------------------------------- */
/* BİZ KİMİZ (STORY) BÖLÜMÜ                           */
/* -------------------------------------------------- */
.story-section {
    padding: 100px 0;
    background-color: var(--color-cream);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 992px) {
    .story-content {
        padding-left: 80px;
    }
    .story-visual {
        display: flex;
        justify-content: flex-end;
        padding-right: 40px;
    }
}

.story-lead {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--color-haki-deep); /* readable on cream */
    line-height: 1.5;
    margin-bottom: 24px;
}

.story-text-details p {
    font-size: 0.95rem;
    color: var(--color-text-dark); /* readable dark on cream */
    margin-bottom: 20px;
}

.counter-list {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(30, 43, 36, 0.1);
    padding-top: 24px;
}

.counter-item {
    display: flex;
    flex-direction: column;
}

.counter-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-haki-deep);
    line-height: 1;
    margin-bottom: 4px;
}

.counter-lbl {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.story-img-container {
    width: 100%;
    max-width: 420px;
    margin: 24px 0 0 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 3px solid rgba(197, 168, 128, 0.25);
}

.story-img-container img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

.video-container {
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #000;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .story-img-container {
        max-width: 320px;
        margin: 24px auto 0 auto;
    }
    .video-container {
        /* aspect-ratio handles height automatically */
    }
}

.mudavim-section {
    padding: 100px 0;
    background-color: var(--color-haki-deep);
    color: var(--color-cream);
    border-top: 1px solid rgba(197, 168, 128, 0.1);
}

.mudavim-section .section-title {
    color: var(--color-white);
}

.mudavim-section .story-lead {
    color: var(--color-gold);
}

.mudavim-section .story-text-details p {
    color: rgba(247, 245, 240, 0.85); /* cream with opacity for text contrast */
}

.mudavim-section .story-img-container {
    margin: 0 auto;
}

@media (min-width: 993px) {
    .story-grid.reverse-layout {
        direction: rtl;
    }
    .story-grid.reverse-layout > * {
        direction: ltr;
    }
}

/* -------------------------------------------------- */
/* MENÜ BÖLÜMÜ                                        */
/* -------------------------------------------------- */
.menu-section {
    padding: 100px 0;
    background-color: var(--color-white);
    border-top: 1px solid rgba(30, 43, 36, 0.05);
}

.menu-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.menu-lead {
    font-size: 1rem;
    color: var(--color-text-dark);
}

.menu-filters-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.menu-filter-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-haki-deep);
    border: 1px solid rgba(30, 43, 36, 0.15);
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.menu-filter-btn:hover {
    border-color: var(--color-haki-deep);
}

.menu-filter-btn.active {
    background-color: var(--color-haki-deep);
    color: var(--color-white);
    border-color: var(--color-haki-deep);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.menu-item-card {
    background-color: var(--color-cream);
    border: 1px solid rgba(30, 43, 36, 0.04);
    padding: 16px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

@media (max-width: 576px) {
    .menu-item-card {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
}

.menu-item-card:hover {
    background-color: var(--color-white);
    border-color: rgba(197, 168, 128, 0.4);
    box-shadow: var(--shadow-subtle);
    transform: translateY(-2px);
}

.menu-item-img-wrapper {
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--color-white);
}

@media (max-width: 576px) {
    .menu-item-img-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 16/10;
        min-width: unset;
    }
}

.menu-item-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
}

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

.menu-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.meta-badge {
    font-size: 0.72rem;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.meta-badge.calorie {
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--color-haki-deep);
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.meta-badge.allergen {
    background-color: rgba(220, 53, 69, 0.06);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.12);
}

.meta-badge.lifestyle.veg {
    background-color: rgba(40, 167, 69, 0.05);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.15);
}

.meta-badge.lifestyle.vegan {
    background-color: rgba(40, 167, 69, 0.08);
    color: #218838;
    border: 1px solid rgba(40, 167, 69, 0.25);
}

.menu-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-title {
    font-size: 1.15rem;
    color: var(--color-haki-deep);
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 6px;
    border-bottom: 1px dashed rgba(30, 43, 36, 0.1);
}

.menu-item-desc {
    font-size: 0.88rem;
    color: rgba(31, 46, 38, 0.8);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* -------------------------------------------------- */
/* SOFRA UYUMLARI (PAIRING)                           */
/* -------------------------------------------------- */
.pairing-section {
    padding: 80px 0;
    background-color: var(--color-haki-mid);
    color: var(--color-white);
    text-align: center;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
}

.pairing-section .section-title {
    color: var(--color-white);
}

.pairing-lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 48px auto;
}

.pairing-slider-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pairing-slider-track-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.pairing-slider-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.pairing-item-card {
    background-color: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    transition: var(--transition-smooth);
    width: 100%;
    flex: 0 0 100%;
}

@media (min-width: 576px) {
    .pairing-item-card {
        flex: 0 0 50%;
    }
}

@media (min-width: 992px) {
    .pairing-item-card {
        flex: 0 0 33.333%;
    }
}

.pair-img-wrapper {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid rgba(197, 168, 128, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    background-color: var(--color-white);
    transition: var(--transition-smooth);
}

.pair-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.pairing-item-card:hover .pair-img-wrapper {
    border-color: var(--color-gold);
    transform: scale(1.05);
}

.slider-btn {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    z-index: 10;
    flex-shrink: 0;
}

.slider-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-haki-dark);
    border-color: var(--color-gold);
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.3);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--color-gold);
    transform: scale(1.2);
}

.pair-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(197, 168, 128, 0.3);
    padding: 4px 10px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.pairing-item-card h4 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 12px;
    padding: 0 20px;
    text-align: center;
}

.pairing-item-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    padding: 0 20px;
    text-align: center;
}

@media (max-width: 992px) {
    .pairing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* -------------------------------------------------- */
/* İLETİŞİM & HARİTA                                  */
/* -------------------------------------------------- */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-lead {
    font-size: 1rem;
    color: var(--color-text-dark);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: start;
}

.contact-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.contact-method h5 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    color: var(--color-haki-deep);
}

.contact-method p {
    font-size: 0.95rem;
    color: var(--color-text-dark);
}

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

.social-wrapper h5 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 1px solid rgba(30, 43, 36, 0.1);
    color: var(--color-haki-deep);
    transition: var(--transition-smooth);
}

.social-icon-btn i {
    font-size: 1.1rem;
}

.social-icon-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-haki-dark);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.contact-map {
    height: 520px;
    box-shadow: var(--shadow-medium);
    border-radius: 8px;
    overflow: hidden;
}

.map-wrapper {
    width: 100%;
    height: 100%;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-map {
        height: 380px;
    }
}

/* -------------------------------------------------- */
/* FOOTER                                             */
/* -------------------------------------------------- */
.site-footer {
    background-color: var(--color-haki-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 40px;
}

.footer-logo {
    height: 54px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-moto {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--color-gold);
}

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

.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-haki-dark);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.footer-backlink {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    margin-left: 5px;
}

.footer-backlink:hover {
    text-decoration: underline;
    opacity: 0.9;
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
}

/* -------------------------------------------------- */
/* RESPONSIVE MOBİL NAVİGASYON                         */
/* -------------------------------------------------- */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background-color: var(--color-haki-dark);
        border-left: 1px solid rgba(197, 168, 128, 0.2);
        padding: 100px 40px;
        z-index: 1000;
        transform: translateX(100%);
        transition: var(--transition-smooth);
    }
    
    .main-navigation.open {
        transform: translateX(0);
        box-shadow: -10px 0 30px rgba(0,0,0,0.25);
    }
    
    .main-navigation .nav-list {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    /* Mobil Menü Açıkken Toggle Butonu */
    .nav-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .nav-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* -------------------------------------------------- */
/* İÇ SAYFA HEADER (INNER HERO)                       */
/* -------------------------------------------------- */
.inner-hero-section {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://www.tamammeyhane.com/wp-content/uploads/2019/05/tamam_header1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    padding-top: 80px;
}

.inner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 26, 22, 0.85);
    z-index: 1;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.inner-hero-title {
    font-size: 2.8rem;
    color: var(--color-white);
    margin-top: 8px;
}

@media (max-width: 768px) {
    .inner-hero-section {
        height: 240px;
    }
    .inner-hero-title {
        font-size: 2rem;
    }
}

/* -------------------------------------------------- */
/* MOBİL OPTİMİZASYONLAR VE DOKUNMATİK DESTEĞİ        */
/* -------------------------------------------------- */
body.no-scroll {
    overflow: hidden;
}

@media (max-width: 768px) {
    /* Menü filtreleme butonlarının mobil düzeni */
    .menu-filters-wrapper {
        gap: 6px;
        margin-bottom: 28px;
        justify-content: center;
    }

    .menu-filter-btn {
        padding: 7px 12px;
        font-size: 0.78rem;
        flex: 0 1 auto;
        text-align: center;
        min-height: 38px;
    }

    /* Mobilde dokunma hedefleri (min 44px) */
    .nav-link, 
    .social-icon-btn, 
    .btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Müzik ikonu mobilde parmak dostu */
    .music-floating-badge {
        bottom: 20px;
        right: 20px;
    }
    
    .music-link {
        padding: 10px 20px 10px 10px;
    }
    
    .vinyl-record {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* -------------------------------------------------- */
/* DİL SEÇİCİ (LANG SELECTOR)                         */
/* -------------------------------------------------- */
.lang-selector {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
}

.lang-btn {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
    padding: 4px;
    letter-spacing: 0.05em;
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--color-gold);
}

.lang-separator {
    color: rgba(255, 255, 255, 0.2);
}

.site-header.scrolled .lang-btn {
    color: rgba(255, 255, 255, 0.6);
}

.site-header.scrolled .lang-btn.active,
.site-header.scrolled .lang-btn:hover {
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .lang-selector-item {
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(197, 168, 128, 0.15);
    }
}

/* -------------------------------------------------- */
/* HAFTALIK ÇALIŞMA SAATLERİ & PROGRAM AKIŞI BÖLÜMÜ    */
/* -------------------------------------------------- */
.schedule-section {
    padding: 100px 0;
    background-color: var(--color-white);
    text-align: center;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
    padding: 0 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .schedule-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.schedule-left-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 768px) {
    .schedule-left-col .schedule-card {
        flex: 1; /* Left cards stretch equally to fill the height */
    }
}

.schedule-right-col {
    display: flex;
    flex-direction: column;
}

.schedule-right-col .timeline-card {
    flex: 1;
    height: 100%;
}

.schedule-card {
    background-color: var(--color-warm-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(30, 43, 36, 0.03);
    border: 1px solid rgba(197, 168, 128, 0.12);
    text-align: left;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.schedule-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(30, 43, 36, 0.06);
    border-color: rgba(197, 168, 128, 0.25);
}

.schedule-card-icon {
    font-size: 2.2rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.schedule-card h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--color-haki-deep);
    margin: 0 0 20px 0;
    font-weight: 600;
}

.hours-list, .program-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.hours-list li {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(197, 168, 128, 0.25);
    padding-bottom: 8px;
}

.hours-note {
    font-size: 0.85rem !important;
    color: var(--color-text-muted) !important;
    border: none !important;
    margin-top: 15px;
    display: block !important;
    font-style: italic;
}

.program-list li {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.program-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.program-days {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-detail {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    color: var(--color-text-dark);
}

.timeline-wrapper {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(197, 168, 128, 0.25);
    margin-top: 15px;
    width: 100%;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -27px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-gold);
    border: 2px solid var(--color-warm-light);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
    transition: var(--transition-smooth);
}

.timeline-item.highlight::before {
    background-color: #ff9800;
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.6);
}

.timeline-time {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-haki-deep);
    margin-bottom: 4px;
}

.timeline-item.highlight .timeline-time {
    color: #e65100;
}

.timeline-content h4 {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    color: var(--color-text-dark);
    margin: 0;
    font-weight: 500;
}

.timeline-content p {
    font-family: var(--font-secondary);
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin: 5px 0 0 0;
}

/* -------------------------------------------------- */
/* FOTOĞRAF GALERİSİ BÖLÜMÜ                            */
/* -------------------------------------------------- */
.gallery-section {
    padding: 100px 0;
    background-color: var(--color-warm-light);
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 15px rgba(30, 43, 36, 0.04);
    border: 1px solid rgba(197, 168, 128, 0.1);
}

/* YouTube Shorts Video Aspect Ratio & Layout Fix */
.gallery-item.video-item {
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
}

.gallery-item.video-item iframe {
    aspect-ratio: 9/16;
    height: 100%;
    width: auto !important;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(30, 43, 36, 0.2);
    border: 1px solid rgba(197, 168, 128, 0.15) !important;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(30, 43, 36, 0.8), rgba(30, 43, 36, 0.2));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.gallery-overlay span {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.1rem;
    transform: translateY(10px);
    transition: transform var(--transition-smooth);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .schedule-section, .gallery-section {
        padding: 70px 0;
    }
    .schedule-grid {
        gap: 25px;
        margin-top: 35px;
    }
    .gallery-grid {
        gap: 15px;
        margin-top: 35px;
    }
}

/* -------------------------------------------------- */
/* TRİPADVİSOR & GOOGLE YORUMLARI BÖLÜMÜ              */
/* -------------------------------------------------- */
.reviews-section {
    padding: 100px 0;
    background-color: var(--color-warm-light);
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    text-align: center;
}

.reviews-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
}

.reviews-slider-track-wrapper {
    overflow: hidden;
    width: 100%;
    min-width: 0; /* Prevent flex blowup */
    padding: 15px 0;
}

.reviews-slider-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.reviews-slider-item {
    flex: 0 0 100%;
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    min-width: 0;
}

@media (min-width: 576px) {
    .reviews-slider-item {
        flex: 0 0 50%;
    }
}

@media (min-width: 992px) {
    .reviews-slider-item {
        flex: 0 0 33.333%;
    }
}

.review-card {
    background-color: var(--color-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(30, 43, 36, 0.04);
    border: 1px solid rgba(197, 168, 128, 0.1);
    text-align: left;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 310px; /* Fixed height for all cards to be completely uniform! */
    box-sizing: border-box;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 43, 36, 0.08);
    border-color: rgba(197, 168, 128, 0.25);
}

.reviews-slider-btn {
    background-color: var(--color-white);
    color: var(--color-haki-deep);
    border: 1px solid rgba(197, 168, 128, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 10;
    flex-shrink: 0;
}

.reviews-slider-btn:hover:not(:disabled) {
    background-color: var(--color-haki-deep);
    color: var(--color-white);
    border-color: var(--color-haki-deep);
}

.reviews-slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.reviews-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.reviews-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.reviews-slider-dot.active {
    background-color: var(--color-gold);
    width: 20px;
    border-radius: 4px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-author {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--color-haki-deep);
    font-size: 1.05rem;
}

.review-source {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 4px;
}

.review-source.google {
    background-color: rgba(66, 133, 244, 0.08);
    color: #4285f4;
}

.review-source.tripadvisor {
    background-color: rgba(0, 175, 135, 0.08);
    color: #00af87;
}

.review-rating {
    color: #ffc107;
    font-size: 0.95rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    font-family: var(--font-secondary);
    font-size: 0.90rem;
    line-height: 1.5;
    color: var(--color-text-dark);
    margin: 0;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 6; /* Clamp text to 6 lines max to maintain perfect height card layout */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 70px 0;
    }
    
    .reviews-grid {
        gap: 20px;
        margin-top: 35px;
    }
}

/* -------------------------------------------------- */
/* SIKÇA SORULAN SORULAR (FAQ) BÖLÜMÜ                */
/* -------------------------------------------------- */
.faq-section {
    padding: 100px 0;
    background-color: var(--color-white);
    border-top: 1px solid rgba(30, 43, 36, 0.05);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-lead {
    font-size: 1.05rem;
    color: var(--color-text-dark);
    margin-bottom: 50px;
    text-align: center;
}

.faq-accordion {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--color-cream);
    border: 1px solid rgba(30, 43, 36, 0.04);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: rgba(197, 168, 128, 0.4);
    box-shadow: var(--shadow-subtle);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-haki-deep);
    text-align: left;
    transition: var(--transition-smooth);
}

.faq-trigger:hover {
    color: var(--color-gold);
}

.faq-icon {
    font-size: 0.9rem;
    transition: transform var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-content {
    max-height: 250px;
}

.faq-content p {
    padding: 0 24px 24px 24px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(31, 46, 38, 0.8);
}

/* -------------------------------------------------- */
/* MENÜ SEGMENT SEÇİCİ (ALAKART / FİKS)               */
/* -------------------------------------------------- */
.menu-segment-wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.segment-btn {
    padding: 12px 36px;
    background-color: var(--color-cream);
    border: 1px solid rgba(30, 43, 36, 0.08);
    border-radius: 30px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-haki-deep);
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.segment-btn:hover {
    color: var(--color-gold);
    border-color: rgba(197, 168, 128, 0.4);
}

.segment-btn.active {
    background-color: var(--color-haki-deep);
    color: var(--color-white);
    border-color: var(--color-haki-deep);
    box-shadow: var(--shadow-subtle);
}

.segment-content {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.segment-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* Fix Menü Grid & Kartları */
.fix-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .fix-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fix-menu-grid {
        grid-template-columns: 1fr;
    }
}

.fix-card {
    background-color: var(--color-cream);
    border: 1px solid rgba(30, 43, 36, 0.04);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.fix-card:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 168, 128, 0.4);
    box-shadow: var(--shadow-subtle);
}

.fix-img-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: var(--color-white);
}

.fix-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
}

.fix-card:hover .fix-img {
    transform: scale(1.03);
}

.fix-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fix-content h3 {
    font-size: 1.25rem;
    color: var(--color-haki-deep);
    margin-bottom: 12px;
}

.fix-content p {
    font-size: 0.9rem;
    color: rgba(31, 46, 38, 0.8);
    line-height: 1.6;
}

/* ================================================== */
/* KONUM & INSTAGRAM BACKLINK SAYFASI                */
/* ================================================== */
.location-page-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(18, 26, 22, 0.75), rgba(18, 26, 22, 0.85)), url('https://www.tamammeyhane.com/wp-content/uploads/2023/07/tamam_yali_1-1024x576.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 40px 20px;
    position: relative;
    overflow-y: auto;
}

.loc-lang-selector {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 26, 22, 0.4);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.loc-lang-selector .lang-btn {
    color: rgba(247, 245, 240, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    padding: 2px 4px;
}

.loc-lang-selector .lang-btn:hover {
    color: var(--color-white);
}

.loc-lang-selector .lang-btn.active {
    color: var(--color-gold);
    font-weight: 700;
}

.loc-lang-selector .lang-divider {
    color: rgba(247, 245, 240, 0.2);
    font-size: 0.85rem;
}

.location-container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.location-card {
    background: rgba(18, 26, 22, 0.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    animation: slideUpLocation 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpLocation {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.location-logo {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.location-mustache {
    width: 44px;
    height: auto;
    margin: 0 auto 15px auto;
    display: block;
    opacity: 1;
    filter: brightness(0) invert(1);
}

.location-title {
    font-family: var(--font-serif);
    color: var(--color-cream);
    font-size: 1.8rem;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.location-subtitle {
    font-size: 0.9rem;
    color: rgba(247, 245, 240, 0.7);
    margin-bottom: 35px;
    font-weight: 300;
}

.location-links-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: 1px solid rgba(197, 168, 128, 0.2);
    position: relative;
    overflow: hidden;
}

.location-link-btn .btn-icon {
    font-size: 1.1rem;
}

.location-link-btn.disabled {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.65;
    background: rgba(197, 168, 128, 0.12) !important;
    color: var(--color-gold) !important;
    border-color: rgba(197, 168, 128, 0.2) !important;
    box-shadow: none !important;
    transform: none !important;
}

/* Avlu Butonu */
.location-link-btn.btn-avlu {
    background: rgba(197, 168, 128, 0.12);
    color: var(--color-gold);
}

.location-link-btn.btn-avlu:hover {
    background: var(--color-gold);
    color: var(--color-haki-dark);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 168, 128, 0.2);
}

/* Yalı Butonu */
.location-link-btn.btn-yali {
    background: rgba(197, 168, 128, 0.12);
    color: var(--color-gold);
}

.location-link-btn.btn-yali:hover {
    background: var(--color-gold);
    color: var(--color-haki-dark);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 168, 128, 0.2);
}

/* Web Sitesi Butonu */
.location-link-btn.btn-website {
    background: rgba(197, 168, 128, 0.05);
    color: var(--color-cream);
    border-color: rgba(197, 168, 128, 0.15);
}

.location-link-btn.btn-website:hover {
    background: rgba(197, 168, 128, 0.15);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

/* WhatsApp Butonu */
.location-link-btn.btn-whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.2);
}

.location-link-btn.btn-whatsapp:hover {
    background: #25D366;
    color: var(--color-haki-dark);
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

/* Sosyal Medya İkonları */
.location-social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 35px;
    margin-bottom: 10px;
}

.loc-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(247, 245, 240, 0.12);
    color: rgba(247, 245, 240, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.02);
}

.loc-social-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(197, 168, 128, 0.05);
    transform: translateY(-3px);
}

.location-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.location-footer p {
    font-size: 0.75rem;
    color: rgba(247, 245, 240, 0.4);
    letter-spacing: 0.03em;
}

@media (max-width: 480px) {
    .location-card {
        padding: 30px 20px;
    }
    .location-title {
        font-size: 1.6rem;
    }
    .location-link-btn {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
}

/* Lightbox Styles */
.gallery-item {
    cursor: pointer;
}

.gallery-lightbox {
    position: fixed;
    z-index: 9999;
    inset: 0;
    background-color: rgba(15, 23, 20, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(8px);
}

.gallery-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border: 2px solid rgba(197, 168, 128, 0.3);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: var(--color-white);
    margin-top: 15px;
    font-size: 1.1rem;
    font-family: var(--font-primary);
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Lightbox Controls */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(30, 43, 36, 0.6);
    border: 1px solid rgba(197, 168, 128, 0.3);
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-gold);
    color: var(--color-warm-dark);
    border-color: var(--color-gold);
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive Controls */
@media (max-width: 768px) {
    .lightbox-prev {
        left: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .lightbox-next {
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .lightbox-content img {
        max-height: 60vh;
    }
}

/* Reservation Modal & Button Styles */
.fixed-reservation-btn {
    position: fixed;
    right: 25px;
    bottom: 30px; /* En altta yer alacak */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border: none;
    border-radius: 30px;
    background-color: var(--color-gold);
    color: var(--color-warm-dark);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    z-index: 980;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fixed-reservation-btn:hover {
    transform: translateY(-3px) scale(1.03);
    background-color: var(--color-white);
    box-shadow: 0 10px 30px rgba(197, 168, 128, 0.3);
}

.fixed-reservation-btn i {
    font-size: 1.1rem;
}

/* Modal Overlay */
.reservation-modal-overlay {
    position: fixed;
    z-index: 99999;
    inset: 0;
    background-color: rgba(15, 23, 20, 0.96);
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
    padding: 20px;
}

.reservation-modal-overlay.active {
    display: flex;
    opacity: 1;
}

/* Modal Container */
.reservation-modal-container {
    background-color: var(--color-warm-dark);
    border: 1.5px solid rgba(197, 168, 128, 0.25);
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    padding: 30px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.reservation-modal-overlay.active .reservation-modal-container {
    transform: scale(1);
}

/* Close Button */
.reservation-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-modal-close:hover {
    color: var(--color-gold);
}

/* Header */
.reservation-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.reservation-modal-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.reservation-modal-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 6px;
}

.reservation-modal-header p {
    font-size: 0.88rem;
    color: var(--color-gold);
    line-height: 1.4;
}

/* Form Styles */
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.reservation-form label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 0.92rem;
    transition: all 0.2s ease;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 8px rgba(197, 168, 128, 0.2);
}

.reservation-form select option {
    background-color: var(--color-warm-dark);
    color: var(--color-white);
}

/* Kapora Notice */
.kapora-notice {
    display: flex;
    gap: 10px;
    background-color: rgba(197, 168, 128, 0.06);
    border: 1px dashed rgba(197, 168, 128, 0.3);
    padding: 12px;
    border-radius: 8px;
    align-items: flex-start;
}

.kapora-notice i {
    color: var(--color-gold);
    font-size: 1rem;
    margin-top: 2px;
}

.kapora-notice p {
    font-size: 0.82rem;
    color: var(--color-gold);
    line-height: 1.4;
    margin: 0;
}

/* Submit Button */
.submit-res-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25d366; /* WhatsApp Yeşili */
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-res-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.submit-res-btn i {
    font-size: 1.2rem;
}

@media (max-width: 576px) {
    .fixed-reservation-btn {
        right: 12px;
        bottom: 20px;
        padding: 7px 12px;
        font-size: 0.78rem;
        gap: 5px;
    }
    
    .reservation-modal-container {
        padding: 15px 20px;
        max-height: 95vh;
        width: 92%;
        margin: auto;
    }

    .reservation-modal-icon {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    .reservation-modal-header h3 {
        font-size: 1.3rem;
        margin-bottom: 2px;
    }

    .reservation-modal-header p {
        font-size: 0.75rem;
    }

    .reservation-modal-header {
        margin-bottom: 12px;
    }

    .reservation-form {
        gap: 8px;
    }

    .form-group {
        gap: 3px;
    }

    .reservation-form label {
        font-size: 0.7rem;
    }

    .reservation-form input,
    .reservation-form select {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .kapora-notice {
        padding: 8px 10px;
        gap: 6px;
        margin-top: 2px;
    }

    .kapora-notice i {
        font-size: 0.85rem;
    }

    .kapora-notice p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .submit-res-btn {
        padding: 10px;
        font-size: 0.9rem;
        margin-top: 5px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Visitor Badge Styles */
.visitor-badge {
    position: fixed;
    left: 25px;
    bottom: 145px; /* Masa yoğunluk rozetinin üstünde duracak */
    display: inline-flex;
    align-items: center;
    min-width: 180px;
    gap: 8px;
    padding: 10px 16px;
    background-color: rgba(30, 43, 36, 0.85);
    border: 1.5px solid rgba(197, 168, 128, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-primary);
    color: var(--color-white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 980;
    backdrop-filter: blur(8px);
    transition: transform 0.2s ease;
}

.visitor-badge:hover {
    transform: translateY(-2px);
    border-color: var(--color-gold);
}

.visitor-dot {
    width: 8px;
    height: 8px;
    background-color: #25d366; /* Parlayan canlı yeşil nokta */
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #25d366;
    animation: visitorPulse 2s infinite;
}

.visitor-count {
    font-weight: 700;
    color: var(--color-gold);
}

.visitor-text {
    color: var(--text-muted);
}

@keyframes visitorPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer Rating Cards & Container Styles */
.footer-rating-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 25px auto;
    max-width: 600px;
    width: 100%;
}

.rating-card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 12px;
    padding: 16px 24px;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.rating-card-item:hover {
    border-color: var(--color-gold);
    background-color: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.rating-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-primary);
    margin-bottom: 8px;
}

.rating-brand i {
    font-size: 1.15rem;
}

.google-card .rating-brand i {
    color: #4285F4; /* Google Mavi */
}

.rating-score-stars {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.rating-score {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-gold);
    font-family: var(--font-secondary);
}

.rating-stars {
    display: flex;
    gap: 3px;
    color: #FFC107; /* Yıldız Rengi */
    font-size: 0.85rem;
}

.rating-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-primary);
}

@media (max-width: 576px) {
    .visitor-badge {
        display: none !important;
    }
}

/* Canlı Masa Yoğunluk Rozeti (Sol Alt Sabit) */
.occupancy-badge-floating {
    position: fixed;
    left: 25px;
    bottom: 95px;
    background: rgba(30, 43, 36, 0.85);
    border: 1.5px solid rgba(197, 168, 128, 0.2);
    padding: 10px 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    min-width: 180px;
    gap: 8px;
    z-index: 980;
    backdrop-filter: blur(8px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    font-family: var(--font-primary);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.occupancy-badge-floating:hover {
    transform: translateY(-2px);
    border-color: var(--color-gold);
}

.occupancy-dot-live {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--color-gold);
    animation: pulseGoldLive 1.5s infinite;
}

@keyframes pulseGoldLive {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.occupancy-count-live {
    font-weight: 700;
    color: var(--color-gold);
}

.occupancy-text-live {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 576px) {
    .occupancy-badge-floating {
        display: none !important;
    }
}

/* Masa Yoğunluk Göstergesi */
.occupancy-indicator {
    background: rgba(30, 43, 36, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.occupancy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.occupancy-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    gap: 6px;
}

.occupancy-badge {
    font-size: 0.8rem;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
}

/* Farklı durum renkleri */
.occupancy-badge.sakin {
    background-color: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}
.occupancy-badge.orta {
    background-color: rgba(241, 196, 15, 0.2);
    color: #f1c40f;
}
.occupancy-badge.yogun {
    background-color: rgba(230, 126, 34, 0.2);
    color: #e67e22;
}
.occupancy-badge.dolu {
    background-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.occupancy-bar-container {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.occupancy-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-gold) 0%, #e67e22 100%);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.occupancy-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.occupancy-live-dot {
    display: flex;
    align-items: center;
    gap: 4px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background-color: #2ecc71;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #2ecc71;
    animation: pulseLive 1.5s infinite;
}

@keyframes pulseLive {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}




