/* ===================================
   PREMIUM MAINLAND TURKISH FOOD
   Modern Restaurant Website
   =================================== */

/* ===================================
   CSS RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Base Light Palette - Creamy & Warm Gold */
    --primary-green: #B8860B;
    /* Darker Gold for visibility on light bg */
    --primary-green-dark: #FDFCF8;
    /* Creamy White */
    --primary-green-light: #F5F2EA;
    /* Light Beige */
    --bg-midnight: #FDFCF8;
    /* Main Background */
    --bg-card: rgba(0, 0, 0, 0.03);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.08);
    --accent-gold: #B8860B;
    --accent-gold-dark: #8B6508;
    --accent-orange: #E65100;

    /* Light Theme Surface Colors */
    --surface-dark: #FDFCF8;
    --surface-light: #F5F2EA;

    /* Typography */
    --text-white: #1A1A1A;
    /* Primary Text */
    --text-dim: #444444;
    /* Secondary Text */
    --text-muted: #777777;

    /* Special Glass Effects */
    --glass-blur: blur(12px);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
    --glass-border-light: rgba(0, 0, 0, 0.05);

    /* Legacy compatibility for structure */
    --white: #1A1A1A;
    --text-dark: #1A1A1A;
    --text-medium: #444444;
    --text-light: #777777;
    --cream-bg: #FDFCF8;
    --cream-light: #F5F2EA;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.2);

    /* Fonts & Spacing */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --section-padding: 120px 0;
    --transition-base: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-midnight);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
    NAVIGATION - Dark Glassmorphism
    =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: var(--transition-base);
    padding: 24px 0;
}

.navbar.scrolled {
    background: rgba(253, 252, 248, 0.9);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    transition: var(--transition-base);
}

.logo-image {
    height: 56px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-base);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.navbar.scrolled .logo-image {
    height: 48px;
}

.logo h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    transition: var(--transition-base);
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.navbar.scrolled .logo h2 {
    color: var(--accent-gold);
    text-shadow: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
    align-items: center;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition-base);
    letter-spacing: 0.3px;
    padding: 8px 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
    text-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-orange);
}

.navbar.scrolled .nav-link:hover {
    color: var(--accent-orange);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1100;
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: var(--transition-base);
    border-radius: 2px;
}

.navbar.scrolled .hamburger span {
    background: var(--accent-gold);
}

/* Hamburger Active Animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Order Buttons */
.order-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #F4C430 0%, #D4A420 100%);
    color: #1A1A1A !important;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.4);
    text-shadow: none !important;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(244, 196, 48, 0.4);
    }

    50% {
        box-shadow: 0 6px 25px rgba(244, 196, 48, 0.7);
    }
}

.order-btn:hover {
    background: linear-gradient(135deg, #FFD54F 0%, #F4C430 100%);
    color: #1A1A1A !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(244, 196, 48, 0.5);
    animation: none;
}

.navbar.scrolled .order-btn {
    padding: 10px 24px;
}

/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.floating-buttons.visible {
    transform: translateY(0);
    opacity: 1;
}

/* Floating Order Button */
.floating-order-btn {
    background: rgba(253, 252, 248, 0.95);
    color: var(--accent-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 50px;
    border: 1px solid var(--accent-gold);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.floating-order-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-green-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.3);
}

.floating-order-btn svg {
    width: 20px;
    height: 20px;
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    background: rgba(253, 252, 248, 0.95);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    align-self: flex-end;
}

.scroll-to-top-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-green-dark);
    transform: translateY(-5px);
}

.scroll-to-top-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-order-btn {
        padding: 12px 18px;
        font-size: 0.85rem;
    }
}

/* ===================================
   HERO SECTION - Stunning Background
   =================================== */
.hero {
    min-height: 100vh;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('https://images.unsplash.com/photo-1529006557810-274b9b2fc783?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Three.js Canvas */
.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    max-width: 900px;
    padding: 40px 20px;
}

.hero-logo {
    height: 140px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .hero-logo {
        height: 80px;
    }
}

/* Hero Order Button */
.hero-order-btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #F4C430 0%, #D4A420 100%);
    color: #1A1A1A;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-left: 15px;
    box-shadow: 0 6px 20px rgba(244, 196, 48, 0.4);
}

.hero-order-btn:hover {
    background: linear-gradient(135deg, #FFD54F 0%, #F4C430 100%);
    color: #1A1A1A;
    box-shadow: 0 12px 35px rgba(244, 196, 48, 0.5);
    transform: translateY(-4px) scale(1.02);
}

/* Google Rating Badge */
.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    text-decoration: none;
    margin-top: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.google-rating-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.google-rating-badge .google-logo {
    width: 24px;
    height: 24px;
}

.google-rating-badge .rating-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1A1A1A;
}

.google-rating-badge .rating-stars {
    color: #FBBC05;
    font-size: 1rem;
    letter-spacing: -2px;
}

.google-rating-badge .review-count {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-order-btn {
        display: block;
        margin: 0 auto;
    }

    .google-rating-badge {
        padding: 10px 18px;
        gap: 8px;
    }

    .google-rating-badge .rating-text {
        font-size: 1rem;
    }

    .google-rating-badge .review-count {
        display: none;
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #FFFFFF;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 40px;
    color: #FFFFFF;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s forwards;
    letter-spacing: 1px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

.cta-button {
    display: inline-block;
    padding: 18px 48px;
    background: var(--accent-gold);
    color: var(--primary-green-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50px;
    border: 2px solid var(--accent-gold);
    transition: var(--transition-base);
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s forwards;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transform: rotate(30deg);
    transition: none;
}

.cta-button:hover {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.cta-button:hover::after {
    left: 150%;
    transition: all 0.8s ease;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 26px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   SECTION HEADERS - Premium Style
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    margin: 0 auto 24px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-dim);
    font-weight: 400;
    letter-spacing: 1px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    text-transform: uppercase;
}

/* ===================================
   ABOUT SECTION - Dark Elegant
   =================================== */
.about {
    padding: var(--section-padding);
    background: var(--bg-midnight);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .lead {
    font-size: 1.4rem;
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 28px;
    line-height: 1.7;
    font-style: italic;
}

.about-text p {
    margin-bottom: 24px;
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
    padding: 20px;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 60%;
    border-top: 2px solid var(--accent-gold);
    border-right: 2px solid var(--accent-gold);
    z-index: 0;
}

.about-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 60%;
    border-bottom: 2px solid var(--accent-gold);
    border-left: 2px solid var(--accent-gold);
    z-index: 0;
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

.about-img:hover {
    transform: translate(10px, -10px);
}

.image-placeholder {
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, var(--cream-bg) 0%, var(--cream-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 168, 37, 0.1) 0%, transparent 70%);
}

/* ===================================
   MENU SECTION - Dark Glassmorphism
   =================================== */
.menu {
    padding: var(--section-padding);
    background: var(--surface-dark);
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-base);
    font-family: var(--font-body);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.03);
}

.filter-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 40%;
    height: 200%;
    background: linear-gradient(to right,
            transparent,
            rgba(0, 0, 0, 0.05),
            transparent);
    transform: rotate(20deg);
}

.filter-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(184, 134, 11, 0.1);
    transform: translateY(-2px);
}

.filter-btn:hover::after {
    left: 150%;
    transition: all 0.6s ease;
}

.filter-btn.active {
    background: var(--accent-gold);
    color: var(--primary-green-dark);
    border-color: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.2);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.menu-item {
    background: rgba(0, 0, 0, 0.015);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-base);
}

.menu-item:hover {
    transform: translateY(-10px);
    border-color: rgba(184, 134, 11, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.menu-item-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.3;
}

.menu-item-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-veg {
    background: rgba(46, 125, 50, 0.1);
    color: #2E7D32;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.badge-non-veg {
    background: rgba(198, 40, 40, 0.1);
    color: #C62828;
    border: 1px solid rgba(198, 40, 40, 0.2);
}

.menu-item-description {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

.menu-item-category {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.menu-item-price {
    font-size: 1.75rem;
    color: var(--accent-gold);
    font-weight: 700;
}

.loading {
    text-align: center;
    padding: 48px;
    color: var(--text-medium);
    font-size: 1.2rem;
}

/* ===================================
   GALLERY SECTION - Modern Cards
   =================================== */
/* ===================================
   GALLERY SECTION - Premium Dark
   =================================== */
.gallery {
    padding: var(--section-padding);
    background: var(--bg-midnight);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 320px;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
    border: 1px solid var(--glass-border);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    opacity: 0.6;
    transition: var(--transition-base);
    z-index: 1;
}

.gallery-item:hover {
    border-color: var(--accent-gold);
    transform: scale(0.98);
}

.gallery-item:hover::before {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 1;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

/* ===================================
   CONTACT SECTION - Premium Info Cards
   =================================== */
.contact {
    padding: var(--section-padding);
    background: var(--bg-midnight);
}

/* ===================================
   CONTACT SECTION - Dark Glass
   =================================== */
.contact {
    padding: var(--section-padding);
    background: var(--bg-midnight);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 32px;
    border-radius: 4px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-base);
}

.info-card:hover {
    transform: translateX(10px);
    border-color: var(--accent-gold);
    background: rgba(184, 134, 11, 0.03);
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
    font-weight: 600;
}

.info-card p,
.info-card a {
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 1rem;
    text-decoration: none;
}

.info-card a:hover {
    color: var(--white);
}

.dial-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    margin-left: 10px;
}

.contact-map {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 400px;
    border: 1px solid var(--glass-border);
}

/* ===================================
   FOOTER - Premium Logo Colors
   =================================== */
.footer {
    background: linear-gradient(135deg, #0D3D1C 0%, #1E7D3A 50%, #165C2E 100%);
    color: #FFFFFF;
    padding: 30px 0 15px;
    position: relative;
    border-top: 3px solid #F4C430;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F4C430' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

/* Footer Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-logo {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
    margin-bottom: 5px;
}

.footer-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    margin-top: 10px;
    transition: all 0.3s ease;
    width: fit-content;
}

.footer-rating:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateX(5px);
}

.footer-rating .google-logo {
    width: 20px;
    height: 20px;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-rating {
        margin: 10px auto 0;
    }
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #F4C430;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #F4C430;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: #F4C430;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #F4C430;
    transform: translateX(4px);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:first-child {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.hours-list li span:last-child {
    color: #F4C430;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #FFFFFF;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: #F4C430;
    color: #1E7D3A;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(244, 196, 48, 0.35);
    border-color: #F4C430;
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Developer Credits */
.developer-credits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.developer-credits span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 400;
}

.developer-link {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.developer-link:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.developer-logo {
    height: 32px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.developer-logo:hover {
    opacity: 1;
}

/* ===================================
   SCROLL REVEAL ANIMATIONS - Premium
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

/* Fade from left/right */
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in-left.active,
.fade-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up animation */
.scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scale-up.active {
    opacity: 1;
    transform: scale(1);
}

/* Premium hover lift effect for cards */
.hover-lift {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(253, 252, 248, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        justify-content: center;
        transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1050;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        color: var(--text-dark);
        font-size: 1.5rem;
        font-family: var(--font-heading);
    }

    .nav-link:hover {
        color: var(--accent-gold);
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.75rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 80px 0;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .navbar {
        padding: 12px 0;
    }

    .logo-image {
        height: 42px;
    }

    .logo h2 {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-grid {
        gap: 16px;
    }

    .contact-content {
        gap: 32px;
    }

    .contact-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .menu-item {
        padding: 24px;
    }

    .footer-section {
        text-align: center;
    }

    .hours-list li {
        flex-direction: column;
        gap: 4px;
        align-items: center;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}