/* ============================================
   PASLASH SOCIAL CAFE — Design System
   Brand Colors, Typography, Components
   ============================================ */

/* Google Fonts - header.php'de preload ile yukleniyor, buradaki @import kaldirildi */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Brand Colors */
    --color-primary: #57432F;
    --color-charcoal: #413329;
    --color-earth: #795F4D;
    --color-taupe: #99806F;
    --color-cream: #F2F1EC;
    --color-mint: #D6E9D8;

    /* Extended Palette */
    --color-dark: #2C2118;
    --color-overlay: rgba(65, 51, 41, 0.85);
    --color-glass: rgba(242, 241, 236, 0.08);
    --color-glass-border: rgba(242, 241, 236, 0.15);

    /* Typography */
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Montserrat', sans-serif;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(65, 51, 41, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-sm) 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-cream);
    letter-spacing: 2px;
    text-transform: lowercase;
}

.logo-text span {
    color: var(--color-mint);
}

.logo-tagline {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-taupe);
    display: block;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links a {
    color: var(--color-cream);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-mint);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--color-mint);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-cream);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.mobile-hide-desktop {
    display: none;
}

@media (max-width: 768px) {
    .desktop-hide-mobile {
        display: none;
    }

    .mobile-hide-desktop {
        display: block;
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(44, 33, 24, 0.85) 0%,
            rgba(65, 51, 41, 0.6) 50%,
            rgba(87, 67, 47, 0.4) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--color-cream);
    z-index: 2;
    width: 90%;
    max-width: 700px;
}

.slide-content h1,
.slide-content h2.slide-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards 0.3s;
}

.slide-content p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--color-taupe);
    margin-bottom: var(--space-xl);
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease forwards 0.5s;
}

.slide-content .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease forwards 0.7s;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(242, 241, 236, 0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background: var(--color-mint);
    border-color: var(--color-mint);
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-lg);
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    color: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    pointer-events: all;
    backdrop-filter: blur(10px);
    font-size: 20px;
}

.slider-arrow:hover {
    background: var(--color-mint);
    color: var(--color-charcoal);
    transform: scale(1.1);
}

/* ============================================
   HASHTAG MARQUEE
   ============================================ */
.hashtag-marquee {
    background: rgba(87, 67, 47, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    margin-top: -60px;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    will-change: transform;
    animation: marqueeScroll 25s linear infinite;
}

.hashtag-item {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 400;
    font-style: italic;
    color: rgba(242, 241, 236, 0.7);
    white-space: nowrap;
    padding: 0 40px;
    line-height: 1.2;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.hashtag-item::after {
    content: '·';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(121, 95, 77, 0.8);
    font-size: 32px;
    font-weight: 900;
    font-style: normal;
}

.hashtag-item:hover {
    color: rgba(214, 233, 216, 1);
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33.33%);
    }
}

@media (max-width: 768px) {
    .hashtag-marquee {
        padding: 12px 0;
        margin-top: -40px;
    }

    .hashtag-item {
        font-size: 22px;
        padding: 0 16px;
    }

    .marquee-track {
        animation-duration: 14s;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-primary {
    background: var(--color-mint);
    color: var(--color-charcoal);
}

.btn-primary:hover {
    background: var(--color-cream);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--color-cream);
    border: 2px solid var(--color-cream);
}

.btn-outline:hover {
    background: var(--color-cream);
    color: var(--color-charcoal);
    transform: translateY(-3px);
}

.btn-earth {
    background: var(--color-primary);
    color: var(--color-cream);
}

.btn-earth:hover {
    background: var(--color-charcoal);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--space-4xl) 0;
}

.section-dark {
    background: var(--color-charcoal);
    color: var(--color-cream);
}

.section-earth {
    background: var(--color-primary);
    color: var(--color-cream);
}

.section-mint {
    background: var(--color-mint);
    color: var(--color-charcoal);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-mint);
    margin-bottom: var(--space-sm);
    display: block;
}

.section-dark .section-label,
.section-earth .section-label {
    color: var(--color-mint);
}

.section-header h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: 16px;
    color: var(--color-taupe);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.section-dark .section-header p,
.section-earth .section-header p {
    color: var(--color-taupe);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, var(--color-charcoal));
    opacity: 0.3;
}

.about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--color-mint);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-mint);
    margin-bottom: var(--space-md);
}

.about-content h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-taupe);
    margin-bottom: var(--space-lg);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-mint);
    display: block;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-taupe);
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid var(--color-glass-border);
    background: var(--color-glass);
    color: var(--color-cream);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--color-mint);
    color: var(--color-charcoal);
    border-color: var(--color-mint);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.menu-card {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    gap: var(--space-md);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-mint), transparent);
    opacity: 0;
    transition: var(--transition-fast);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-mint);
}

.menu-card:hover::before {
    opacity: 1;
}

.menu-card-img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--color-earth);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card-info {
    flex: 1;
}

.menu-card-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--color-cream);
}

.menu-card-info p {
    font-size: 13px;
    color: var(--color-taupe);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.menu-card-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-mint);
}

/* Full Menu Page */
.menu-page-section {
    padding-top: calc(var(--header-height) + var(--space-3xl));
}

.menu-category {
    margin-bottom: var(--space-3xl);
}

.menu-category-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--color-glass-border);
}

.menu-category-icon {
    font-size: 32px;
}

.menu-category-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-cream);
}

.menu-list-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-glass-border);
    transition: var(--transition-fast);
}

.menu-list-item:hover {
    padding-left: var(--space-md);
    background: var(--color-glass);
    border-radius: var(--radius-sm);
}

.menu-list-item-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: 4px;
}

.menu-list-item-info p {
    font-size: 13px;
    color: var(--color-taupe);
}

.menu-list-item-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-mint);
    white-space: nowrap;
    margin-left: var(--space-lg);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    background: var(--color-earth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    color: var(--color-cream);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    color: var(--color-cream);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    background: var(--color-mint);
    color: var(--color-charcoal);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-dark);
    color: var(--color-cream);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand .logo-text {
    font-size: 32px;
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: var(--color-taupe);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
    font-size: 16px;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-mint);
    color: var(--color-charcoal);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-lg);
    color: var(--color-mint);
}

.footer-section ul li {
    margin-bottom: var(--space-sm);
}

.footer-section ul li a {
    color: var(--color-taupe);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--color-mint);
    padding-left: var(--space-sm);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: var(--color-taupe);
    font-size: 14px;
    margin-bottom: var(--space-md) !important;
}

.footer-contact li .icon {
    color: var(--color-mint);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid var(--color-glass-border);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--color-taupe);
    font-size: 13px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   GALLERY PAGE HERO
   ============================================ */
.page-hero {
    height: 45vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-charcoal);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    opacity: 0.9;
}

.page-hero-content {
    position: relative;
    text-align: center;
    color: var(--color-cream);
    z-index: 1;
}

.page-hero-content h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.page-hero-content p {
    font-size: 18px;
    color: var(--color-taupe);
    font-weight: 300;
}

/* ============================================
   SPECIALTY / FEATURES SECTION
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-mint);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: var(--space-md);
    display: block;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--color-cream);
}

.feature-card p {
    font-size: 14px;
    color: var(--color-taupe);
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: var(--color-mint);
    border-radius: var(--radius-full);
    opacity: 0.05;
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--color-cream);
    margin-bottom: var(--space-md);
}

.cta-section p {
    font-size: 18px;
    color: var(--color-taupe);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   WORKING HOURS SECTION
   ============================================ */
.hours-card {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.hours-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-mint);
    margin-bottom: var(--space-lg);
}

.hours-card p {
    font-size: 16px;
    color: var(--color-cream);
    line-height: 2;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--color-primary);
    color: var(--color-cream);
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--color-mint);
    color: var(--color-charcoal);
    transform: translateY(-5px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--color-charcoal);
        flex-direction: column;
        justify-content: center;
        padding: var(--space-2xl);
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-xl);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 18px;
        padding: var(--space-md) 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider-arrows {
        display: none;
    }

    .hero-slider {
        height: 100vh;
        height: 100dvh;
        min-height: 480px;
        max-height: 750px;
    }

    .slide {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slide-bg {
        transform: scale(1) !important;
    }

    .slide-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        padding: 0 var(--space-lg);
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        z-index: 10;
    }

    .slide-content h1,
    .slide-content h2.slide-title,
    .slide-content p,
    .slide-content .btn {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .slide-content h1,
    .slide-content h2.slide-title {
        font-size: clamp(24px, 8vw, 36px);
        line-height: 1.2;
        margin-bottom: var(--space-sm);
        word-wrap: break-word;
    }

    .slide-content p {
        font-size: 14px;
        margin-bottom: var(--space-lg);
        line-height: 1.6;
    }

    .slide-content .btn {
        padding: 12px 28px;
        font-size: 13px;
    }

    .slider-nav {
        bottom: 20px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .menu-tabs {
        gap: var(--space-xs);
    }

    .menu-tab {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ============================================
   PLACEHOLDER IMAGES (until real images uploaded)
   ============================================ */
.placeholder-img {
    background: linear-gradient(135deg, var(--color-earth), var(--color-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-taupe);
    font-size: 48px;
}

/* ============================================
   LOGO IMAGE
   ============================================ */
.logo-img {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.site-header.scrolled .logo-img {
    height: 38px;
}

/* ============================================
   STORES SECTION
   ============================================ */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.store-card {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.store-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-mint);
}

.store-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.store-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.store-card:hover .store-card-img img {
    transform: scale(1.05);
}

.store-card-body {
    padding: var(--space-xl);
}

.store-card-body h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--color-cream);
}

.store-card-body p {
    font-size: 14px;
    color: var(--color-taupe);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, #2C2118 0%, #57432F 50%, #795F4D 100%);
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
    text-align: center;
}

.page-hero-content h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: var(--color-cream);
    margin-bottom: var(--space-sm);
}

.page-hero-content p {
    font-size: 16px;
    color: var(--color-taupe);
    font-weight: 300;
}

/* ============================================
   FORM STYLING (for franchise page etc.)
   ============================================ */
.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--color-glass);
    color: var(--color-charcoal);
    transition: var(--transition-fast);
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-mint);
    box-shadow: 0 0 0 3px rgba(214, 233, 216, 0.2);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 15px;
}

.btn-block {
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    .stores-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MENU PAGE — REDESIGNED ITEM CARDS
   ============================================ */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.menu-item-card {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.menu-item-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-mint);
}

.menu-item-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--color-earth);
}

.menu-item-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item-card:hover .menu-item-card-img img {
    transform: scale(1.05);
}

.menu-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: linear-gradient(135deg, var(--color-earth), var(--color-primary));
}

.menu-item-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-mint);
    color: var(--color-charcoal);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-item-card-body {
    padding: var(--space-lg);
}

.menu-item-card-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-cream);
    margin-bottom: var(--space-xs);
}

.menu-item-card-body p {
    font-size: 13px;
    color: var(--color-taupe);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
    min-height: 20px;
}

.menu-item-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-mint);
}

/* ============================================
   FEATURE IMAGE SUPPORT
   ============================================ */
.feature-img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 0 auto var(--space-md);
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   STORE CARD PLACEHOLDER
   ============================================ */
.store-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--color-taupe);
    background: linear-gradient(135deg, var(--color-earth), var(--color-primary));
}

.store-card-map {
    width: 100%;
    height: 100%;
}

.store-card-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ============================================
   FOOTER LOGO IMG
   ============================================ */
.footer-logo-img {
    height: 42px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: var(--space-md);
}

/* ============================================
   RESPONSIVE — MENU ITEMS GRID
   ============================================ */
@media (max-width: 768px) {
    .menu-items-grid {
        grid-template-columns: 1fr;
    }

    .menu-item-card-img {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
}