/* ============================================
   AKKONAK RESTORAN - ANA STIL DOSYASI
   ============================================ */

/* Reset & Variables */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --gold:      #c8a96e;
    --gold-dark: #a8864a;
    --dark:      #111111;
    --dark2:     #1a1a1a;
    --dark3:     #222222;
    --text:      #333333;
    --text-muted:#777777;
    --light:     #f8f5f0;
    --white:     #ffffff;
    --border:    #e8e0d4;
    --shadow:    0 4px 24px rgba(0,0,0,.10);
    --shadow-lg: 0 12px 48px rgba(0,0,0,.18);
    --radius:    6px;
    --radius-lg: 12px;
    --font-serif:'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --transition: .3s ease;
    --header-h:  80px;
}

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

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-serif);
    line-height: 1.2;
    color: var(--dark);
}
h1 { font-size: clamp(2.2rem,5vw,3.8rem); }
h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); }
h3 { font-size: clamp(1.3rem,2.5vw,1.8rem); }
h4 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .6rem;
}
.section-title { margin-bottom: .8rem; }
.section-sub { color: var(--text-muted); margin-bottom: 2.5rem; }
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--dark2); color: var(--white); }
.section-dark h1,.section-dark h2,.section-dark h3 { color: var(--white); }
.section-light { background: var(--light); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-20 { gap: 20px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-gold {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,169,110,.35);
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
}
.btn-dark {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}
.btn-dark:hover { background: var(--dark3); }
.btn-sm { padding: 10px 22px; font-size: .82rem; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== PRELOADER ===== */
#preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--dark);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .5s, visibility .5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.spinner {
    width: 50px; height: 50px;
    border: 3px solid rgba(200,169,110,.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== SCROLL TOP ===== */
.scroll-top {
    position: fixed; bottom: 30px; right: 30px; z-index: 800;
    width: 44px; height: 44px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 700;
    opacity: 0; pointer-events: none;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(200,169,110,.4);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-3px); }

/* ===== HEADER ===== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 500;
    transition: all var(--transition);
}
.header-top {
    background: var(--dark);
    padding: 8px 0;
    font-size: .8rem;
    color: #aaa;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-top-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.header-info { color: #aaa; margin-right: 20px; }
.header-info i { color: var(--gold); margin-right: 5px; }
.header-top-right { display: flex; align-items: center; gap: 12px; }
.social-link { color: #aaa; font-size: .85rem; transition: color var(--transition); }
.social-link:hover { color: var(--gold); }
.btn-reserve-small {
    background: var(--gold); color: var(--dark);
    padding: 5px 14px; border-radius: 3px;
    font-size: .78rem; font-weight: 600;
    letter-spacing: .04em; text-transform: uppercase;
}
.btn-reserve-small:hover { background: var(--gold-dark); color: var(--white); }

.header-main {
    background: rgba(17,17,17,.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
    border-bottom: 1px solid rgba(200,169,110,.15);
}
.site-header.scrolled .header-top { display: none; }
.site-header.scrolled .header-main {
    background: rgba(17,17,17,.98);
    box-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.header-main-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 24px;
}
.logo img { max-height: 55px; width: auto; min-width: 80px; object-fit: contain; }

.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
    display: block; padding: 10px 14px;
    color: #ccc; font-size: .88rem; font-weight: 500;
    letter-spacing: .02em; text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
    height: 2px; background: var(--gold);
    transform: scaleX(0); transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute; top: 100%; left: 0;
    min-width: 200px;
    background: var(--dark2);
    border: 1px solid rgba(200,169,110,.2);
    border-radius: var(--radius);
    padding: 8px 0;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(4px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    z-index: 100;
    box-shadow: var(--shadow-lg);
}
/* Fare menü ile liste arasından geçerken kapanmasın diye görünmez köprü */
.dropdown::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.dropdown a {
    display: block; padding: 9px 18px;
    color: #bbb; font-size: .84rem;
    transition: all var(--transition);
}
.dropdown a:hover { color: var(--gold); padding-left: 24px; background: rgba(200,169,110,.06); }

.header-phone {
    color: var(--gold); font-size: .9rem; font-weight: 600;
    white-space: nowrap;
}
.header-phone:hover { color: var(--white); }

.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 32px; height: 24px; flex-direction: column;
    justify-content: space-between; padding: 0;
}
.nav-toggle span {
    display: block; height: 2px; background: var(--white);
    border-radius: 2px; transition: all var(--transition);
}

/* Body padding for fixed header */
body { padding-top: calc(var(--header-h) + 40px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h) - 40px);
    display: flex; align-items: center;
    background: var(--dark);
    overflow: hidden;
    margin-top: calc(-1 * (var(--header-h) + 40px));
    padding-top: calc(var(--header-h) + 40px);
}
.hero-bg,
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    background-repeat: no-repeat;
    opacity: .45;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: .45; }
.logo-text {
    font-family: var(--font-display, 'Playfair Display', serif);
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: .04em;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(17,17,17,.8) 0%, rgba(17,17,17,.5) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 700px;
}
.hero-label {
    display: inline-block;
    color: var(--gold);
    font-size: .75rem; font-weight: 600;
    letter-spacing: .2em; text-transform: uppercase;
    margin-bottom: 1.2rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid rgba(200,169,110,.4);
}
.hero-title {
    color: var(--white);
    margin-bottom: 1.4rem;
    text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero-desc { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 2.2rem; max-width: 520px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    color: rgba(255,255,255,.5); font-size: .7rem; letter-spacing: .12em;
    text-transform: uppercase; gap: 8px; z-index: 2;
    animation: bounce 2s infinite;
}
.hero-scroll-line { width: 1px; height: 40px; background: rgba(200,169,110,.5); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== SECTION DIVIDER ===== */
.divider {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin: 16px auto 32px;
}
.divider-line { flex: 1; max-width: 80px; height: 1px; background: var(--border); }
.divider-icon { color: var(--gold); font-size: 1.2rem; }

/* ===== FEATURED MENU ITEMS ===== */
.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.menu-card-img {
    position: relative; overflow: hidden;
    aspect-ratio: 4/3;
}
.menu-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }
.menu-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--gold); color: var(--dark);
    padding: 4px 10px; border-radius: 20px;
    font-size: .72rem; font-weight: 700; text-transform: uppercase;
}
.menu-card-body { padding: 20px; }
.menu-card-name { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: .4rem; }
.menu-card-desc { color: var(--text-muted); font-size: .88rem; margin-bottom: 1rem; }
.menu-card-footer { display: flex; justify-content: space-between; align-items: center; }
.menu-price { font-family: var(--font-serif); font-size: 1.3rem; color: var(--gold); font-weight: 700; }

/* ===== MENU PAGE ===== */
.menu-categories-tabs {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center; margin-bottom: 50px;
}
.menu-tab {
    padding: 10px 24px;
    border: 2px solid var(--border);
    background: transparent;
    border-radius: 30px;
    cursor: pointer;
    font-size: .88rem; font-weight: 600;
    color: var(--text-muted);
    transition: all var(--transition);
    text-decoration: none;
}
.menu-tab:hover, .menu-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}
.menu-table { width: 100%; }
.menu-item-row {
    display: flex; align-items: center; gap: 20px;
    padding: 18px 0;
    border-bottom: 1px dashed var(--border);
    transition: background var(--transition);
}
.menu-item-row:last-child { border-bottom: none; }
.menu-item-row:hover { background: rgba(200,169,110,.04); }
.menu-item-img { width: 70px; height: 70px; border-radius: var(--radius); object-fit: cover; flex-shrink: 0; }
.menu-item-img-placeholder {
    width: 70px; height: 70px; border-radius: var(--radius);
    background: var(--light); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
}
.menu-item-info { flex: 1; }
.menu-item-name { font-family: var(--font-serif); font-size: 1rem; margin-bottom: .25rem; }
.menu-item-desc { color: var(--text-muted); font-size: .84rem; }
.menu-item-tags { display: flex; gap: 6px; margin-top: 6px; }
.tag {
    font-size: .68rem; padding: 2px 8px; border-radius: 10px;
    font-weight: 600; letter-spacing: .02em;
}
.tag-veg { background: #e8f5e9; color: #2e7d32; }
.tag-spicy { background: #fde8e8; color: #c62828; }
.menu-item-price { font-family: var(--font-serif); font-size: 1.15rem; color: var(--gold); font-weight: 700; white-space: nowrap; }

/* ===== RESERVATION FORM ===== */
.reservation-section {
    background: var(--dark2);
    padding: 80px 0;
}
.reservation-wrap {
    max-width: 700px; margin: 0 auto;
}
.form-group { margin-bottom: 22px; }
.form-label {
    display: block; margin-bottom: 7px;
    font-size: .85rem; font-weight: 600;
    color: #ccc; letter-spacing: .03em;
}
.form-control {
    width: 100%; padding: 13px 16px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    color: var(--white);
    font-size: .95rem;
    font-family: var(--font-sans);
    transition: border-color var(--transition), background var(--transition);
    -webkit-appearance: none;
}
.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,.09);
}
.form-control::placeholder { color: rgba(255,255,255,.3); }
select.form-control {
    cursor: pointer;
    color-scheme: dark;
    background-color: #2a2a2a;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c8a96e' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
select.form-control option,
select.form-control optgroup {
    background: #2a2a2a;
    color: #fff;
}
textarea.form-control { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: .82rem; color: #888; margin-top: 6px; }
.cf-turnstile { display: flex; justify-content: center; min-height: 65px; }

/* Alert */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: .9rem;
}
.alert-success { background: rgba(76,175,80,.15); border: 1px solid rgba(76,175,80,.4); color: #a5d6a7; }
.alert-error   { background: rgba(244,67,54,.12);  border: 1px solid rgba(244,67,54,.35);  color: #ef9a9a; }

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.gallery-item {
    position: relative; overflow: hidden;
    border-radius: var(--radius);
    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: rgba(17,17,17,.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-zoom { color: var(--white); font-size: 2rem; }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 9000;
    background: rgba(0,0,0,.92);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; visibility: hidden;
    transition: all .3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 4px; }
.lightbox-close {
    position: absolute; top: 20px; right: 25px;
    color: var(--white); font-size: 2rem; cursor: pointer;
    line-height: 1; background: none; border: none;
    transition: color var(--transition);
}
.lightbox-close:hover { color: var(--gold); }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    position: relative;
}
.testimonial-card::before {
    content: '"'; 
    font-family: var(--font-serif);
    font-size: 6rem;
    line-height: 1;
    color: var(--gold);
    opacity: .2;
    position: absolute;
    top: 10px; left: 20px;
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-text { color: var(--text); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    object-fit: cover;
    background: var(--light);
}
.testimonial-name { font-weight: 700; font-size: .95rem; }

/* ===== BLOG ===== */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}
.blog-card:hover { transform: translateY(-5px); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-meta { font-size: .8rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-card-title { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card-title a { color: var(--dark); }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt { font-size: .88rem; color: var(--text-muted); }
.blog-read-more { font-size: .82rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: .05em; }

/* ===== CONTACT ===== */
.contact-info-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px 0; border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(200,169,110,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--gold);
}
.contact-info-text h5 { font-size: .9rem; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { font-size: 1rem; color: var(--dark); font-weight: 500; }

.map-container { border-radius: var(--radius-lg); overflow: hidden; }
.map-container iframe { display: block; width: 100%; height: 400px; border: 0; }

/* ===== PAGE HERO ===== */
.page-hero {
    background: var(--dark2);
    padding: 70px 0 60px;
    text-align: center;
    margin-top: 0;
    border-bottom: 1px solid rgba(200,169,110,.15);
}
.page-hero h1 { color: var(--white); margin-bottom: .6rem; }
.breadcrumb {
    display: flex; justify-content: center; align-items: center;
    gap: 10px; flex-wrap: wrap;
    font-size: .85rem; color: #888;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb-sep { color: #555; }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark2); color: #ccc; }
.footer-top { padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo img { max-height: 50px; min-width: 80px; width: auto; object-fit: contain; margin-bottom: 16px; }
.footer-about p { font-size: .88rem; color: #999; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-btn {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #aaa; font-size: .9rem;
    transition: all var(--transition);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.footer-title { color: var(--white); font-size: .95rem; margin-bottom: 20px; font-family: var(--font-serif); letter-spacing: .05em; }
.footer-links li, .footer-contact li { margin-bottom: 10px; }
.footer-links a, .footer-contact a { color: #999; font-size: .88rem; transition: color var(--transition); }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: #999; }
.footer-contact i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: .82rem; color: #666; }
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--gold); }

/* ===== ICON FONT (CSS ikons) ===== */
.icon-map::before    { content: '📍'; }
.icon-mail::before   { content: '✉'; }
.icon-phone::before  { content: '☎'; }
.icon-clock::before  { content: '🕐'; }

/* ===== FADE IN ANIMATIONS ===== */
.fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== STATS ===== */
.stat-box { text-align: center; padding: 30px 20px; }
.stat-number { font-family: var(--font-serif); font-size: 3rem; color: var(--gold); font-weight: 700; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: .85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; }

/* ===== CHEF CARDS ===== */
.chef-card { text-align: center; }
.chef-img {
    width: 160px; height: 160px;
    border-radius: 50%; object-fit: cover;
    margin: 0 auto 16px;
    border: 4px solid rgba(200,169,110,.3);
}
.chef-name { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 4px; }
.chef-title { color: var(--gold); font-size: .85rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

/* ===== ADMIN NOTICE ===== */
.admin-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--dark);
    border-top: 2px solid var(--gold);
    padding: 10px 20px;
    display: flex; gap: 20px; align-items: center;
    font-size: .82rem; color: #aaa;
    z-index: 400;
}
.admin-bar a { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --header-h: 70px; }
    body { padding-top: calc(var(--header-h) + 35px); }

    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed; top: 0; right: 0;
        width: 280px; height: 100vh;
        background: var(--dark2);
        padding: 80px 24px 24px;
        transform: translateX(100%);
        transition: transform var(--transition);
        overflow-y: auto;
        box-shadow: -4px 0 20px rgba(0,0,0,.4);
    }
    .main-nav.open { transform: translateX(0); }
    .nav-list { flex-direction: column; align-items: flex-start; gap: 0; }
    .nav-link { padding: 13px 0; font-size: 1rem; width: 100%; border-bottom: 1px solid rgba(255,255,255,.06); }
    .nav-link::after { display: none; }
    .dropdown { position: static; opacity: 1; visibility: visible; pointer-events: auto; transform: none; box-shadow: none; border: none; padding: 0 0 0 16px; background: transparent; }
    .dropdown a { color: #888; padding: 8px 0; font-size: .88rem; }
    .header-phone { display: none; }

    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .section { padding: 60px 0; }
    .hero { min-height: 80vh; }
    .hero-btns { flex-direction: column; }
    .btn-lg { padding: 14px 30px; }

    .header-top { display: none; }

    .menu-categories-tabs { gap: 8px; }
    .menu-tab { padding: 8px 16px; font-size: .82rem; }
    .menu-item-row { flex-wrap: wrap; }

    .gallery-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    h1 { font-size: 2rem; }
}
