/* ═══════════════════════════════════════════════════════════
   Lezzet Bahçesi – Global Stylesheet
   ═══════════════════════════════════════════════════════════ */

:root {
    --primary:       #2D5016;
    --primary-light: #4A7C2A;
    --secondary:     #D4A574;
    --accent:        #E8B86D;
    --dark:          #1B1B1B;
    --light:         #FDFBF7;
    --cream:         #F5F0E8;
    --text-muted:    #6B6B6B;
    --border:        #E8E0D0;
}

/* ─── Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* ─── Loader ────────────────────────────────────────────────── */
.loader {
    position: fixed; inset: 0;
    background: var(--light);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity .5s ease;
}
.loader.hidden { opacity: 0; pointer-events: none; }
.loader-content { text-align: center; }
.loader-spinner {
    width: 50px; height: 50px;
    border: 3px solid var(--cream);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}
.loader-brand { color: var(--primary); font-family: 'Playfair Display', serif; font-size: 1.2rem; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Navbar ────────────────────────────────────────────────── */
.navbar {
    background: rgba(253,251,247,.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,.05);
    padding: 1rem 0;
    transition: all .3s ease;
}
.navbar.scrolled { padding: .5rem 0; box-shadow: 0 2px 30px rgba(0,0,0,.1); }

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary) !important;
    display: flex; align-items: center; gap: .6rem;
    text-decoration: none;
}
.navbar-logo {
    height: 52px;
    width: 52px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(45,80,22,.18);
    transition: transform .3s ease, box-shadow .3s ease;
    flex-shrink: 0;
}
.navbar:not(.scrolled) .navbar-logo {
    height: 56px;
    width: 56px;
}
.navbar.scrolled .navbar-logo {
    height: 44px;
    width: 44px;
}
.navbar-brand:hover .navbar-logo {
    transform: scale(1.06);
    box-shadow: 0 4px 16px rgba(45,80,22,.28);
}
.navbar-brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    transition: font-size .3s;
}
.navbar.scrolled .navbar-brand-text { font-size: 1.3rem; }
@media (max-width: 480px) {
    .navbar-brand-text { font-size: 1.2rem; }
    .navbar-logo { height: 42px; width: 42px; }
}

.nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    margin: 0 .5rem;
    position: relative;
    transition: color .3s ease;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -5px; left: 0;
    width: 0; height: 2px; background: var(--accent);
    transition: width .3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn-custom {
    background: var(--primary);
    color: white !important;
    border: none;
    padding: .6rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all .3s ease;
    text-decoration: none;
    display: inline-flex; align-items: center;
}
.btn-custom:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45,80,22,.3);
}
.btn-accent {
    background: var(--accent);
    color: var(--primary) !important;
    border: none;
    padding: .6rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all .3s ease;
    text-decoration: none;
    display: inline-flex; align-items: center;
}
.btn-accent:hover { background: var(--secondary); transform: translateY(-2px); }

/* ─── Section Title ─────────────────────────────────────────── */
.section-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--primary);
    margin-bottom: .75rem;
    line-height: 1.2;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}
.section-label {
    display: inline-block;
    background: rgba(45,80,22,.1);
    color: var(--primary);
    padding: .4rem 1rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: .05em;
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex; align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a0a 100%);
    overflow: hidden;
}
.hero-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212,165,116,.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(232,184,109,.1) 0%, transparent 50%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    color: var(--accent);
    padding: .5rem 1.2rem;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(232,184,109,.3);
    backdrop-filter: blur(5px);
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-title span { color: var(--accent); display: block; }
.hero-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,.85);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.8;
}
.hero-image-wrapper { position: relative; z-index: 2; }
.hero-image-main {
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,.3);
    transform: rotate(2deg);
    transition: transform .5s ease;
}
.hero-image-main:hover { transform: rotate(0deg) scale(1.02); }
.hero-image-main img { width: 100%; height: 500px; object-fit: cover; }

.hero-floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}
.hero-floating-card.card-1 { top: 10%; left: -10%; animation-delay: 0s; }
.hero-floating-card.card-2 { bottom: 15%; right: -5%; animation-delay: 1.5s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hero-floating-card i { font-size: 1.5rem; color: var(--accent); margin-right: .5rem; }
.hero-floating-card small { display: block; color: var(--text-muted); font-size: .75rem; }
.hero-floating-card strong { color: var(--primary); font-size: .95rem; }

.circle-deco { position: absolute; border-radius: 50%; border: 2px solid rgba(232,184,109,.2); z-index: 1; }
.circle-1 { width: 300px; height: 300px; top: -100px; right: -100px; }
.circle-2 { width: 200px; height: 200px; bottom: 10%; left: -50px; border-color: rgba(255,255,255,.1); }

/* ─── Feature Cards ─────────────────────────────────────────── */
.features-section { padding: 5rem 0; background: var(--cream); }
.feature-card {
    background: white; border-radius: 20px;
    padding: 2.5rem 2rem; text-align: center;
    transition: all .4s ease;
    border: 1px solid transparent;
    height: 100%;
}
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,.08); border-color: var(--accent); }
.feature-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem; color: white; font-size: 1.8rem;
    transition: transform .3s ease;
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(5deg); }
.feature-card h3 { color: var(--primary); margin-bottom: 1rem; font-size: 1.3rem; }
.feature-card p { color: var(--text-muted); font-size: .95rem; line-height: 1.7; margin: 0; }

/* ─── About Section ─────────────────────────────────────────── */
.about-section { padding: 5rem 0; background: white; position: relative; overflow: hidden; }
.about-image { position: relative; border-radius: 20px; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.about-image::before {
    content: ''; position: absolute; top: 20px; left: 20px; right: -20px; bottom: -20px;
    border: 3px solid var(--accent); border-radius: 20px; z-index: -1;
}
.about-content h2 { font-size: clamp(2rem,3vw,2.8rem); color: var(--primary); margin-bottom: 1.5rem; line-height: 1.2; }
.about-content .lead { color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; margin-bottom: 2rem; }
.stat-item { text-align: center; padding: 1rem; }
.stat-item h4 { font-size: 2.5rem; color: var(--accent); font-weight: 900; }
.stat-item p { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* ─── Menu Preview ──────────────────────────────────────────── */
.menu-section {
    padding: 5rem 0; background: var(--primary);
    position: relative; overflow: hidden;
}
.menu-section::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.menu-section h2 { color: white; text-align: center; font-size: clamp(2rem,3vw,2.8rem); margin-bottom: 3rem; }
.menu-item {
    background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
    border-radius: 15px; padding: 1.5rem; margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,.1);
    transition: all .3s ease;
    display: flex; align-items: center; gap: 1.5rem;
}
.menu-item:hover { background: rgba(255,255,255,.15); transform: translateX(10px); }
.menu-icon {
    width: 60px; height: 60px; background: var(--accent); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.5rem; flex-shrink: 0;
}
.menu-item h4 { color: white; margin-bottom: .3rem; font-size: 1.2rem; }
.menu-item p { color: rgba(255,255,255,.7); margin: 0; font-size: .9rem; }

/* ─── Full Menu Page ────────────────────────────────────────── */
.menu-page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a0a 100%);
    padding: 8rem 0 4rem;
    text-align: center; color: white;
}
.menu-page-hero h1 { font-size: clamp(2rem,4vw,3.5rem); color: white; margin-bottom: 1rem; }
.menu-page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; }

.menu-category-nav { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; margin: 2.5rem 0; }
.menu-category-nav a {
    background: white; color: var(--primary);
    border: 2px solid var(--border); padding: .5rem 1.2rem;
    border-radius: 50px; font-weight: 500; text-decoration: none;
    transition: all .3s ease; font-size: .9rem;
}
.menu-category-nav a:hover, .menu-category-nav a.active {
    background: var(--primary); color: white; border-color: var(--primary);
}
.menu-category-section { padding: 3rem 0; }
.menu-category-title {
    font-size: 1.8rem; color: var(--primary);
    display: flex; align-items: center; gap: .75rem;
    margin-bottom: 2rem; padding-bottom: 1rem;
    border-bottom: 2px solid var(--cream);
}
.menu-category-title i { color: var(--accent); }

.menu-full-item {
    background: white; border-radius: 16px;
    padding: 1.5rem; margin-bottom: 1rem;
    border: 1px solid var(--border);
    transition: all .3s ease;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.menu-full-item:hover { border-color: var(--accent); box-shadow: 0 8px 25px rgba(0,0,0,.08); transform: translateY(-2px); }
.menu-full-item-info h4 { font-size: 1.1rem; color: var(--primary); margin-bottom: .3rem; }
.menu-full-item-info p { color: var(--text-muted); font-size: .875rem; margin: 0; line-height: 1.5; }
.menu-full-item-price {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white; padding: .6rem 1.2rem; border-radius: 50px;
    font-weight: 700; font-size: 1rem; white-space: nowrap; flex-shrink: 0;
}
.menu-unit-badge {
    display: inline-block; background: var(--cream); color: var(--text-muted);
    font-size: .75rem; padding: .2rem .6rem; border-radius: 20px; margin-left: .5rem;
}

/* QR Code Box */
.qr-box {
    background: white; border-radius: 20px;
    padding: 2rem; text-align: center;
    border: 2px solid var(--border);
}
.qr-box h5 { color: var(--primary); margin-bottom: .5rem; }
.qr-box p { color: var(--text-muted); font-size: .875rem; margin-bottom: 1.5rem; }

/* ─── Hours Section ─────────────────────────────────────────── */
.hours-section { padding: 5rem 0; background: var(--cream); }
.hours-card {
    background: white; border-radius: 20px; padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,.05);
    position: relative; overflow: hidden;
}
.hours-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 5px; height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--primary));
}
.hours-card h2 { color: var(--primary); margin-bottom: 2rem; text-align: center; }
.hours-table { width: 100%; }
.hours-table tr { border-bottom: 1px solid #eee; transition: all .3s ease; }
.hours-table tr:hover { background: var(--light); }
.hours-table td { padding: 1rem 1.5rem; font-size: 1.05rem; }
.hours-table td:first-child { font-weight: 600; color: var(--primary); width: 40%; }
.hours-table td:last-child { color: var(--text-muted); text-align: right; }
.hours-table tr.closed td:last-child { color: #dc3545; font-weight: 600; }
.status-badge {
    display: inline-block; padding: .4rem 1rem;
    border-radius: 50px; font-size: .85rem; font-weight: 600; margin-top: 1.5rem;
}
.status-open  { background: #d4edda; color: #155724; }
.status-closed{ background: #f8d7da; color: #721c24; }

/* ─── Gallery / Images ──────────────────────────────────────── */
.gallery-section { padding: 5rem 0; background: white; }
.gallery-item {
    border-radius: 16px; overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(45,80,22,.7) 0%, transparent 60%);
    opacity: 0; transition: opacity .3s ease;
    display: flex; align-items: flex-end; padding: 1.5rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay p { color: white; margin: 0; font-weight: 500; }

/* ─── Contact Section ───────────────────────────────────────── */
.contact-section { padding: 5rem 0; background: white; }
.contact-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 20px; padding: 3rem; color: white; height: 100%;
    position: relative; overflow: hidden;
}
.contact-card::after {
    content: ''; position: absolute; top: -50px; right: -50px;
    width: 150px; height: 150px;
    background: rgba(255,255,255,.1); border-radius: 50%;
}
.contact-card h2 { color: white; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item i { font-size: 1.3rem; color: var(--accent); margin-top: .2rem; }
.contact-item div strong { display: block; margin-bottom: .2rem; color: var(--accent); }
.contact-item div p, .contact-item div a {
    color: rgba(255,255,255,.9); margin: 0; text-decoration: none; transition: color .3s ease;
}
.contact-item div a:hover { color: var(--accent); }
.map-container {
    border-radius: 20px; overflow: hidden;
    height: 100%; min-height: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ─── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a0a 100%);
    padding: 8rem 0 4rem; text-align: center; color: white;
    position: relative; overflow: hidden;
}
.page-hero h1 { font-size: clamp(2rem,4vw,3rem); color: white; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb-custom { justify-content: center; margin-top: 1.5rem; }
.breadcrumb-custom .breadcrumb-item { color: rgba(255,255,255,.7); }
.breadcrumb-custom .breadcrumb-item.active { color: var(--accent); }
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }
.breadcrumb-custom a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb-custom a:hover { color: var(--accent); }

/* ─── SEO Page specific ─────────────────────────────────────── */
.seo-info-card {
    background: var(--cream); border-radius: 16px; padding: 2rem;
    border-left: 4px solid var(--accent); margin-bottom: 2rem;
}
.seo-info-card h3 { color: var(--primary); margin-bottom: .75rem; font-size: 1.3rem; }
.seo-info-card p { color: var(--text-muted); margin: 0; line-height: 1.8; }
.distance-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    background: var(--primary); color: white;
    padding: .4rem 1rem; border-radius: 50px;
    font-size: .85rem; font-weight: 500; margin-bottom: 1rem;
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer { background: var(--dark); color: white; padding: 4rem 0 2rem; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--accent); }
.footer-text { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.7; }
.footer-heading { color: var(--accent); font-size: 1rem; font-weight: 600; margin-bottom: 1.2rem; letter-spacing: .05em; text-transform: uppercase; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .9rem; transition: color .3s ease; display: flex; align-items: center; gap: .4rem; }
.footer-links a:hover { color: var(--accent); }
.footer-links i { font-size: .75rem; }
.footer-contact { display: flex; flex-direction: column; gap: .8rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; }
.footer-contact-item i { color: var(--accent); font-size: 1rem; margin-top: .2rem; flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a { color: rgba(255,255,255,.7); font-size: .9rem; text-decoration: none; }
.footer-contact-item a:hover { color: var(--accent); }
.social-links { display: flex; gap: .5rem; }
.social-links a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: rgba(255,255,255,.1); border-radius: 50%;
    color: white; transition: all .3s ease; text-decoration: none;
}
.social-links a:hover { background: var(--accent); color: var(--primary); transform: translateY(-3px); }
.seo-links-footer {
    display: flex; flex-wrap: wrap; gap: .5rem; align-items: center;
    padding: 1.5rem 0; font-size: .85rem;
}
.seo-links-footer span { color: rgba(255,255,255,.4); margin-right: .5rem; }
.seo-links-footer a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .3s ease; }
.seo-links-footer a:hover { color: var(--accent); }
.footer-divider { border-color: rgba(255,255,255,.1); margin: 1rem 0; }
.footer-copy { color: rgba(255,255,255,.4); font-size: .85rem; margin: 0; text-align: center; }

/* ─── Animations ────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(30px); transition: all .8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

/* ─── Utilities ─────────────────────────────────────────────── */
.bg-cream { background: var(--cream); }
.text-primary-custom { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.border-accent { border-color: var(--accent) !important; }

/* ─── QR Menu Page ──────────────────────────────────────────── */
.qr-menu-page { background: var(--light); }
.qr-menu-header {
    background: var(--primary); color: white;
    padding: 2rem; text-align: center;
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.qr-menu-header h1 { font-size: 1.8rem; color: white; margin-bottom: .2rem; }
.qr-menu-header p { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; }
.qr-menu-category { padding: 1.5rem; }
.qr-menu-category-title {
    font-size: 1.3rem; color: var(--primary); font-weight: 700;
    padding: .75rem 1rem; background: var(--cream);
    border-radius: 12px; margin-bottom: 1rem;
    display: flex; align-items: center; gap: .5rem;
}
.qr-menu-item {
    background: white; border-radius: 12px; padding: 1rem 1.2rem;
    margin-bottom: .75rem; border: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
}
.qr-menu-item-name { font-weight: 600; color: var(--dark); font-size: .95rem; }
.qr-menu-item-content { color: var(--text-muted); font-size: .8rem; margin-top: .2rem; line-height: 1.4; }
.qr-menu-item-price {
    background: var(--primary); color: white;
    padding: .4rem .9rem; border-radius: 30px;
    font-weight: 700; font-size: .9rem; white-space: nowrap; flex-shrink: 0;
}
.qr-menu-footer { padding: 2rem; text-align: center; color: var(--text-muted); font-size: .85rem; }

/* ─── Mobile Bottom Navigation Bar ─────────────────────────── */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 24px rgba(0,0,0,.10);
    z-index: 1050;
    height: 64px;
    align-items: stretch;
}
.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #9ca3af;
    font-size: .58rem;
    font-weight: 500;
    gap: .2rem;
    transition: color .2s;
    padding-bottom: 2px;
}
.bottom-nav-item i { font-size: 1.3rem; line-height: 1; }
.bottom-nav-item:hover,
.bottom-nav-item.active { color: var(--primary); }

/* Orta — büyük yuvarlak Menü butonu */
.bottom-nav-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.bottom-nav-center-btn {
    position: absolute;
    bottom: 8px;
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: .58rem;
    font-weight: 600;
    gap: .15rem;
    box-shadow: 0 4px 18px rgba(45,80,22,.40);
    border: 3px solid white;
    transition: transform .2s, box-shadow .2s;
}
.bottom-nav-center-btn i { font-size: 1.5rem; line-height: 1; }
.bottom-nav-center-btn:hover,
.bottom-nav-center-btn.active {
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(45,80,22,.50);
}
@media (max-width: 991px) {
    .bottom-nav { display: flex; }
    body { padding-bottom: 68px; }
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 991px) {
    .navbar-collapse { background: white; padding: 1rem; border-radius: 12px; margin-top: .5rem; box-shadow: 0 10px 30px rgba(0,0,0,.1); }
    .nav-link { margin: .3rem 0; }
}
@media (max-width: 768px) {
    .hero-image-main { margin-top: 2rem; transform: rotate(0); }
    .hero-floating-card { display: none; }
    .about-image::before { display: none; }
    .hours-card { padding: 2rem 1.5rem; }
    .contact-card { margin-bottom: 2rem; }
    .menu-full-item { flex-direction: column; align-items: flex-start; }
}
