/* ============================================
   Ada Kahvaltı - Style Sheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #E07A5F;
    --primary-dark: #C4613F;
    --primary-light: #FFF0EB;
    --secondary: #3D9DA1;
    --secondary-dark: #2D7A7E;
    --secondary-light: #E0F4F4;
    --accent: #F2CC8F;
    --accent-green: #81B29A;
    --bg: #FEFAF6;
    --bg-alt: #FFF5EE;
    --white: #FFFFFF;
    --text: #2B2D42;
    --text-light: #6B7B8D;
    --text-lighter: #A0AEC0;
    --shadow-sm: 0 2px 8px rgba(43,45,66,.06);
    --shadow-md: 0 4px 20px rgba(43,45,66,.08);
    --shadow-lg: 0 8px 40px rgba(43,45,66,.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: .3s cubic-bezier(.4,0,.2,1);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --nav-height: 64px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--nav-height); }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.8rem, 5vw, 2.8rem); color: var(--text); }

.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-tag {
    display: inline-block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.section-header h2 {
    margin-top: 4px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(224,122,95,.35);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(224,122,95,.4);
}
.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(61,157,161,.3);
}
.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}
.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--text);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    height: var(--nav-height);
}
.navbar.scrolled {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}
.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}
.navbar-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
    z-index: 1001;
}
.navbar.scrolled .navbar-logo { color: var(--text); }
.logo-ada { color: var(--primary); }
.navbar.scrolled .logo-ada { color: var(--primary); }

/* Hamburger */
.navbar-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 4px;
}
.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.navbar.scrolled .navbar-toggle span { background: var(--text); }
.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile Menu */
.navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    padding: 100px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.1);
    z-index: 999;
}
.navbar-menu.open { right: 0; }
.navbar-menu .nav-link {
    display: block;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,.05);
    transition: var(--transition);
}
.navbar-menu .nav-link:hover,
.navbar-menu .nav-link.active { color: var(--primary); }
/* navbar-cta removed */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.nav-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    max-height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}
@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,.3) 0%,
        rgba(0,0,0,.45) 50%,
        rgba(0,0,0,.6) 100%
    );
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    animation: heroFadeIn .8s ease-out;
}

/* Swinging Sign Logo */
.hero-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}
.hero-logo-swing {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,.4));
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.nazar-svg {
    vertical-align: middle;
    margin-right: 6px;
    flex-shrink: 0;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 20px;
    border: 1.5px solid rgba(255,255,255,.5);
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,.1);
}
.hero-title {
    font-size: clamp(2.8rem, 10vw, 5rem);
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    font-weight: 300;
    opacity: .9;
    margin-bottom: 36px;
    line-height: 1.5;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-indicator {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6px;
}
.scroll-indicator span {
    display: block;
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
}

/* ========================================
   WAVE DIVIDERS
   ======================================== */
.wave-divider {
    margin-top: -2px;
    line-height: 0;
    overflow: hidden;
}
.wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}
.wave-flip { transform: scaleX(-1); }
.wave-reviews-to-loc svg { height: 50px; }

/* ========================================
   SECTIONS (common)
   ======================================== */
.section {
    padding: 80px 0;
}
.about { background: var(--bg); }
.menu-section { background: var(--white); }
.gallery-section { background: var(--bg); }
.press-section { background: var(--white); }
.reviews-section { background: var(--secondary-light); }
.location-section { background: var(--white); }

/* ========================================
   ABOUT
   ======================================== */
.about-grid {
    display: grid;
    gap: 40px;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.about-img-secondary {
    position: absolute;
    bottom: -20px;
    right: -10px;
    width: 45%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.about-img-secondary img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.about-text {}
.about-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.7;
}
.about-text > p:last-of-type {
    color: var(--text-light);
    margin-bottom: 32px;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.about-feature:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 12px;
    color: var(--primary);
}
.feature-icon svg { width: 24px; height: 24px; }
.about-feature strong {
    display: block;
    font-size: .95rem;
    color: var(--text);
}
.about-feature span {
    font-size: .85rem;
    color: var(--text-light);
}

/* ========================================
   MENU
   ======================================== */
.menu-featured {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    padding: 32px;
    color: var(--white);
    margin-bottom: 40px;
    overflow: hidden;
}
.menu-featured::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
}
.menu-featured::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 20%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}
.menu-featured-badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(255,255,255,.2);
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.menu-featured-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    z-index: 1;
}
.menu-featured-info h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}
.menu-featured-info p {
    font-size: .95rem;
    opacity: .9;
    line-height: 1.6;
}
.menu-featured-price {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
}
.menu-featured-price small {
    font-size: .5em;
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-light);
    background: var(--bg);
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}
.menu-tab:hover { color: var(--primary); }
.menu-tab.active {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
}

/* Menu Items */
.menu-list {
    max-width: 640px;
    margin: 0 auto;
}
.menu-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
    animation: menuItemIn .3s ease-out both;
}
.menu-item[hidden] { display: none; }
.mi-info { flex-shrink: 0; }
.mi-name {
    font-weight: 600;
    font-size: 1rem;
}
.mi-desc {
    display: block;
    font-size: .8rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 2px;
}
.mi-line {
    flex: 1;
    border-bottom: 2px dotted var(--text-lighter);
    min-width: 20px;
    margin-bottom: 4px;
}
.mi-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}
@keyframes menuItemIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.06);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(43,45,66,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-overlay svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gi-wide { grid-column: span 2; }
.gi-tall { grid-row: span 2; }
.gallery-video-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    background: rgba(0,0,0,.6);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lb-body {
    max-width: 90vw;
    max-height: 85vh;
}
.lb-body img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}
.lb-close {
    position: absolute;
    top: 16px;
    right: 20px;
    color: var(--white);
    font-size: 2.5rem;
    line-height: 1;
    z-index: 2001;
    transition: var(--transition);
}
.lb-close:hover { transform: rotate(90deg); }
.lb-prev, .lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 2rem;
    padding: 16px;
    z-index: 2001;
    transition: var(--transition);
}
.lb-prev { left: 8px; }
.lb-next { right: 8px; }
.lb-prev:hover, .lb-next:hover { color: var(--primary); }

/* ========================================
   PRESS / SOCIAL MEDIA
   ======================================== */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
    margin-top: 2rem;
}
.press-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,.06);
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
}
.press-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.press-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 10px;
    color: var(--primary);
}
.press-icon svg { width: 20px; height: 20px; }
.press-content { flex: 1; min-width: 0; }
.press-content h3 {
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    margin: 0 0 4px;
    line-height: 1.3;
}
.press-source {
    font-size: .8rem;
    color: var(--text-light);
    font-weight: 400;
}
.press-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--text-lighter);
    transition: var(--transition);
}
.press-card:hover .press-arrow { color: var(--primary); transform: translateX(3px); }
.press-arrow svg { width: 20px; height: 20px; }

@media (max-width: 767px) {
    .press-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .press-card { padding: 16px 18px; }
}

/* ========================================
   REVIEWS
   ======================================== */
.reviews-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
    padding: 20px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}
.reviews-google-icon { flex-shrink: 0; }
.reviews-score-wrap { text-align: left; }
.reviews-score-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}
.reviews-stars-row {
    margin: 2px 0;
}
.star-filled {
    color: #FBBC05;
    font-size: 1.1rem;
}
.reviews-label {
    font-size: .8rem;
    color: var(--text-light);
}

/* Reviews Slider */
.reviews-slider {
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 20px;
    touch-action: pan-y;
}
.reviews-track {
    display: flex;
    gap: 16px;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}
.reviews-track:active { cursor: grabbing; }
.reviews-track a { pointer-events: auto; }
.review-card {
    flex: 0 0 calc(100% - 16px);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}
.review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: .95rem; }
.review-stars-sm {
    color: #FBBC05;
    font-size: .85rem;
    line-height: 1;
}
.review-card p {
    color: var(--text-light);
    font-size: .95rem;
    line-height: 1.7;
    font-style: italic;
}

/* Review Dots */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 24px;
}
.reviews-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-lighter);
    transition: var(--transition);
    cursor: pointer;
}
.reviews-dots .dot.active {
    background: var(--primary);
    transform: scale(1.3);
}
.reviews-cta { text-align: center; }

/* ========================================
   LOCATION
   ======================================== */
.location-grid {
    display: grid;
    gap: 32px;
}
.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 280px;
}
.location-map iframe {
    display: block;
    min-height: 280px;
}
.location-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 20px;
}
.loc-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
}
.loc-item:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.loc-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 10px;
    color: var(--primary);
}
.loc-icon svg { width: 20px; height: 20px; }
.loc-item strong {
    display: block;
    font-size: .9rem;
    margin-bottom: 2px;
}
.loc-item p {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.5;
}
.loc-item a { color: var(--primary); font-weight: 600; }
.loc-item a:hover { text-decoration: underline; }

.btn-navigate {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--text);
    color: rgba(255,255,255,.7);
    padding: 48px 0 24px;
}
.footer-top {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
}
.footer-brand h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 6px;
}
.footer-brand .logo-ada { color: var(--primary); }
.footer-brand p { font-size: .9rem; }
.footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-nav a {
    font-size: .9rem;
    transition: var(--transition);
}
.footer-nav a:hover { color: var(--white); }
.footer-social {
    display: flex;
    gap: 16px;
}
.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 20px;
    text-align: center;
    font-size: .8rem;
}

/* ========================================
   FLOATING PHONE BUTTON
   ======================================== */
.fab-phone {
    position: fixed;
    bottom: 24px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: var(--accent-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(129,178,154,.5);
    z-index: 900;
    transition: var(--transition);
    animation: fabPulse 3s infinite;
}
.fab-phone:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(129,178,154,.6);
}
@keyframes fabPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(129,178,154,.5); }
    50% { box-shadow: 0 4px 20px rgba(129,178,154,.5), 0 0 0 12px rgba(129,178,154,.15); }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.anim {
    opacity: 0;
    transition: opacity .6s ease, transform .6s ease;
}
.anim[data-anim="fade-up"] { transform: translateY(40px); }
.anim[data-anim="fade-right"] { transform: translateX(-40px); }
.anim[data-anim="fade-left"] { transform: translateX(40px); }
.anim[data-anim="zoom-in"] { transform: scale(.92); }
.anim.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Stagger children in gallery */
.gallery-grid .anim:nth-child(1) { transition-delay: .05s; }
.gallery-grid .anim:nth-child(2) { transition-delay: .1s; }
.gallery-grid .anim:nth-child(3) { transition-delay: .15s; }
.gallery-grid .anim:nth-child(4) { transition-delay: .2s; }
.gallery-grid .anim:nth-child(5) { transition-delay: .25s; }
.gallery-grid .anim:nth-child(6) { transition-delay: .3s; }

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet (768px+) */
@media (min-width: 768px) {
    :root { --nav-height: 72px; }

    .container { padding: 0 32px; }
    .section { padding: 100px 0; }
    .section-header { margin-bottom: 56px; }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    .about-img-secondary {
        right: -24px;
        bottom: -24px;
    }

    .menu-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
        gap: 16px;
    }
    .gi-wide { grid-column: span 2; }
    .gi-tall { grid-row: span 2; }

    .review-card { flex: 0 0 calc(50% - 8px); }

    .location-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
    }
    .location-map { min-height: 400px; }
    .location-map iframe { min-height: 400px; }

    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    /* Desktop nav */
    .navbar-toggle { display: none; }
    .navbar-menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        padding: 0;
        flex-direction: row;
        align-items: center;
        gap: 0;
        box-shadow: none;
    }
    .navbar-menu .nav-link {
        padding: 8px 16px;
        font-size: .9rem;
        color: rgba(255,255,255,.85);
        border-bottom: none;
    }
    .navbar.scrolled .navbar-menu .nav-link {
        color: var(--text-light);
    }
    .navbar-menu .nav-link:hover,
    .navbar.scrolled .navbar-menu .nav-link:hover {
        color: var(--primary);
    }
    /* navbar-cta removed */

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 260px;
        gap: 16px;
    }

    .review-card { flex: 0 0 calc(33.33% - 11px); }

    .fab-phone { display: none; }
}

/* Small mobile (< 380px) */
@media (max-width: 380px) {
    .hero-title { font-size: 2.4rem; }
    .hero-buttons { flex-direction: column; gap: 12px; }
    .hero-buttons .btn { width: 100%; }
    .menu-featured-body { flex-direction: column; }
    .menu-featured-price { font-size: 2rem; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .hero-bg img { animation: none; }
}
