/**
 * Saron's Kitchen UK - Complete Mobile Responsive Stylesheet
 * Comprehensive mobile-first design with advanced touch interactions
 * Maintains original colors and branding while upgrading mobile experience
 */

/* =====================================================
   CSS CUSTOM PROPERTIES & RESET
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Original Brand Colors - Preserved */
    --primary-dark: #012323;
    --primary-gold: #008b8b;
    --accent-gold: #008b8b;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #8a8a8a;
    --bg-cream: #fdfcf8;
    --bg-light: #f8f6f0;
    --border-light: rgba(201, 169, 110, 0.2);
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    /* Enhanced Mobile Properties */
    --mobile-header-height: 70px;
    --mobile-safe-area-top: env(safe-area-inset-top, 0px);
    --mobile-safe-area-bottom: env(safe-area-inset-bottom, 0px);
    --mobile-safe-area-left: env(safe-area-inset-left, 0px);
    --mobile-safe-area-right: env(safe-area-inset-right, 0px);
    --vh: 1vh; /* Dynamic viewport height set by JavaScript */
    
    /* Safe area insets for notched devices */
    --safe-area-inset-top: env(safe-area-inset-top, 0px);
    --safe-area-inset-bottom: env(safe-area-inset-bottom, 0px);
    --safe-area-inset-left: env(safe-area-inset-left, 0px);
    --safe-area-inset-right: env(safe-area-inset-right, 0px);
}

/* Enhanced Body Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Better touch scrolling for all elements */
* {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* =====================================================
   ENHANCED HEADER & NAVIGATION
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(253, 252, 248, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 9999;
    padding: 0.8rem 0;
    padding-top: calc(0.8rem + var(--safe-area-inset-top));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    padding-left: calc(1.5rem + var(--safe-area-inset-left));
    padding-right: calc(1.5rem + var(--safe-area-inset-right));
    position: relative;
}

/* Logo Styles */
.logo, .logo-container {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 10001;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
}

.logo-icon {
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: all 0.3s ease;
}

.logo-icon img {
    height: auto;
    max-height: 100%;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--primary-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* =====================================================
   ENHANCED MOBILE MENU TOGGLE
   ===================================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0.8rem;
    z-index: 10001;
    background: none;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    width: 50px;
    height: 50px;
    order: 3;
}

.mobile-menu-toggle:hover {
    background: rgba(201, 169, 110, 0.1);
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--primary-dark);
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* =====================================================
   ENHANCED NAVIGATION MENU
   ===================================================== */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-dark);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* =====================================================
   ENHANCED BUTTONS & TOUCH TARGETS
   ===================================================== */
.order-btn, .cart-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    color: #fff;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
    position: relative;
}

.order-btn:hover, .cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.cart-count {
    background: var(--primary-dark);
    color: #fff;
    border-radius: 50%;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 0 0.3rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.btn-primary {
    background: linear-gradient(135deg, #008b8b, #008b8b);
    color: #fff;
    padding: clamp(1rem, 3vw, 1.4rem) clamp(2rem, 5vw, 3rem);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    font-size: clamp(0.9rem, 2vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-medium);
    min-width: 160px;
    text-align: center;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: clamp(1rem, 3vw, 1.4rem) clamp(2rem, 5vw, 3rem);
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    font-size: clamp(0.9rem, 2vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    min-width: 160px;
    text-align: center;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary:hover {
    color: #fff;
}

.btn-secondary:hover::before {
    left: 0;
}

/* Touch-friendly class for better mobile interactions */
.touch-friendly {
    min-height: 44px;
    min-width: 44px;
    padding: 12px;
    transition: transform 0.1s ease;
}

.touch-friendly:active {
    transform: scale(0.98);
}

/* =====================================================
   HERO SECTIONS
   ===================================================== */
.hero {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)),
                url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--safe-area-inset-top);
}

.hero-content {
    max-width: 1000px;
    z-index: 2;
    position: relative;
    padding: 0 1.5rem;
    padding-left: calc(1.5rem + var(--safe-area-inset-left));
    padding-right: calc(1.5rem + var(--safe-area-inset-right));
}

.hero-subtitle {
    color: var(--primary-gold);
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -3px;
    line-height: 1;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: #f8f8f8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

/* Menu Hero Specific */
.menu-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)),
                url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    padding-top: calc(4rem + var(--safe-area-inset-top));
    text-align: center;
    color: #fff;
}

.menu-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.menu-hero p {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    padding: 0 1.5rem;
}

/* =====================================================
   MAIN CONTENT
   ===================================================== */
.main-content {
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    padding-left: calc(1.5rem + var(--safe-area-inset-left));
    padding-right: calc(1.5rem + var(--safe-area-inset-right));
}

/* =====================================================
   WHY SECTION
   ===================================================== */
.why-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: linear-gradient(135deg, #fff 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.why-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    padding-left: calc(1.5rem + var(--safe-area-inset-left));
    padding-right: calc(1.5rem + var(--safe-area-inset-right));
    position: relative;
    z-index: 2;
}

.why-header {
    text-align: center;
    margin-bottom: clamp(3rem, 8vw, 6rem);
    margin-left: auto;
    margin-right: auto;
}

.why-subtitle {
    color: var(--primary-gold);
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.why-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.why-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -2px;
    line-height: 1.1;
}

.why-description {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: var(--text-medium);
    line-height: 1.8;
    font-weight: 400;
    margin: 0 auto;
}

/* =====================================================
   ENHANCED FEATURES GRID
   ===================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(201, 169, 110, 0.3);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.feature-card:hover .feature-icon::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.feature-description {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* =====================================================
   SHOWCASE SECTION
   ===================================================== */
.why-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
}

.showcase-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    height: 500px;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-image:hover img {
    transform: scale(1.05);
}

.showcase-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(201, 169, 110, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-image:hover::after {
    opacity: 1;
}

.showcase-content {
    padding: 2rem;
}

.showcase-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* =====================================================
   GALLERY SECTION
   ===================================================== */
.gallery-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 30s ease-in-out infinite;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    padding-left: calc(1.5rem + var(--safe-area-inset-left));
    padding-right: calc(1.5rem + var(--safe-area-inset-right));
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-subtitle {
    color: var(--primary-gold);
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.gallery-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 3rem);
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -1px;
}

.gallery-description {
    font-size: clamp(1.1rem, 3vw, 1.2rem);
    color: var(--text-medium);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    padding-left: calc(1.5rem + var(--safe-area-inset-left));
    padding-right: calc(1.5rem + var(--safe-area-inset-right));
    position: relative;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 350px;
    background: #fff;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(201, 169, 110, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-gold);
}

.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Swipe indicators for mobile gallery */
.swipe-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1a202c;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.swipe-indicator:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.swipe-indicator.left {
    left: 10px;
}

.swipe-indicator.right {
    right: 10px;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    padding: clamp(6rem, 12vw, 10rem) 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
                url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2074&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(201,169,110,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    animation: float 30s linear infinite;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    padding-left: calc(1.5rem + var(--safe-area-inset-left));
    padding-right: calc(1.5rem + var(--safe-area-inset-right));
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    color: var(--primary-gold);
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.cta-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 3rem);
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.cta-description {
    font-size: clamp(1.1rem, 3vw, 1.2rem);
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================
   ENHANCED FOOTER
   ===================================================== */
.footer {
    background: var(--primary-dark);
    color: #fff;
    padding: clamp(4rem, 8vw, 6rem) 0 2rem;
    padding-bottom: calc(2rem + var(--safe-area-inset-bottom));
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    padding-left: calc(1.5rem + var(--safe-area-inset-left));
    padding-right: calc(1.5rem + var(--safe-area-inset-right));
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    display: block;
    text-decoration: none;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary-gold);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    min-height: 44px;
    min-width: 44px;
}

.social-link:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.2rem 0;
    min-height: 32px;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 10px;
}

.contact-info {
    list-style: none;
    padding: 0;
    font-style: normal;
}

.contact-info > div {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
    color: white;
}

.contact-details {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
}

.contact-details strong {
    color: #fff;
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
}

.contact-details a:hover {
    color: var(--primary-gold);
    text-decoration: underline;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    min-height: 40px;
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    color: rgba(255, 255, 255, 0.8);
}

.time {
    color: var(--primary-gold);
    font-weight: 500;
}

.special-note {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.special-note strong {
    color: var(--primary-gold);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.special-note p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.developer-credit {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.developer-credit:hover {
    color: var(--accent-gold);
}

/* =====================================================
   MOBILE SPECIFIC ENHANCEMENTS
   ===================================================== */

/* Mobile Quick Actions Bar */
.mobile-quick-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 32, 44, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.75rem;
    padding-bottom: calc(0.75rem + var(--mobile-safe-area-bottom));
    display: none;
    justify-content: space-around;
    align-items: center;
    z-index: 10001;
    border-top: 2px solid #d4af37;
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.15);
}

.mobile-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: white;
    text-decoration: none;
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    max-width: 80px;
    position: relative;
    overflow: hidden;
}

.mobile-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.mobile-action-btn:hover,
.mobile-action-btn:active {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    transform: translateY(-2px);
}

.mobile-action-btn:active::before {
    left: 100%;
}

.mobile-action-btn:active {
    transform: scale(0.95);
}

.mobile-action-btn i {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    display: block;
}

.mobile-action-btn span {
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f6d55c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a202c;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    z-index: 10000;
    animation: floatPulse 3s infinite;
    transition: all 0.3s ease;
}

.floating-contact:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

@keyframes floatPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Flash Message Mobile */
.flash-message {
    position: fixed;
    top: 80px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    z-index: 10000;
    animation: slideIn 0.3s ease;
    max-width: 350px;
}

.flash-message.success { background: #10b981; }
.flash-message.error { background: #ef4444; }
.flash-message.info { background: #3b82f6; }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* User Welcome */
.user-welcome {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.user-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
}

.auth-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes cardLoadIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes galleryItemLoadIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Smooth Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.feature-card {
    animation: cardLoadIn 0.6s ease forwards;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

.gallery-item {
    animation: galleryItemLoadIn 0.6s ease forwards;
}

.gallery-item:nth-child(2) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(3) {
    animation-delay: 0.2s;
}

.gallery-item:nth-child(4) {
    animation-delay: 0.3s;
}

.gallery-item:nth-child(5) {
    animation-delay: 0.4s;
}

.gallery-item:nth-child(6) {
    animation-delay: 0.5s;
}

/* =====================================================
   ENHANCED RESPONSIVE DESIGN
   ===================================================== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
        padding-left: calc(1.5rem + var(--safe-area-inset-left));
        padding-right: calc(1.5rem + var(--safe-area-inset-right));
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .cta-section {
        background-attachment: scroll;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 0 2rem;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .why-title,
    .gallery-title,
    .cta-title {
        font-size: 2.5rem;
    }
}

/* Tablets and below */
@media (max-width: 768px) {
    /* Prevent horizontal scrolling */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .header {
        padding: 0.5rem 0;
        padding-top: calc(0.5rem + var(--safe-area-inset-top));
    }
    
    .nav-container {
        padding: 0 1rem;
        padding-left: calc(1rem + var(--safe-area-inset-left));
        padding-right: calc(1rem + var(--safe-area-inset-right));
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }

    .logo, .logo-container {
        font-size: 1.8rem;
        order: 1;
        z-index: 10001;
    }

    .logo-icon {
        height: 45px;
    }

    .logo-icon img {
        width: 80px !important;
        height: auto;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .logo-tagline {
        font-size: 0.6rem;
        display: block;
    }
    
    .cart-btn, .order-btn {
        order: 2;
        padding: 0.6rem;
        font-size: 1.2rem;
        min-width: 44px;
        height: 44px;
        border-radius: 50%;
        z-index: 10001;
    }

    /* Enhanced Mobile Menu Overlay */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100vw;
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        background: rgba(253, 252, 248, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        font-size: 1.2rem;
        z-index: 10000;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        padding: 2rem;
        padding-top: calc(2rem + var(--safe-area-inset-top));
        padding-bottom: calc(2rem + var(--safe-area-inset-bottom));
        box-sizing: border-box;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 0;
        opacity: 0;
        transform: translateY(20px);
        animation: none;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
        animation: slideInUp 0.6s ease forwards;
    }

    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu a {
        font-size: 1.8rem;
        padding: 1.2rem 2rem;
        display: block;
        width: 100%;
        border-radius: 12px;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.1);
        margin: 0.5rem 0;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        letter-spacing: 1px;
        position: relative;
        overflow: hidden;
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
        transition: left 0.3s ease;
        z-index: -1;
    }

    .nav-menu a:hover::before,
    .nav-menu a.active::before {
        left: 0;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .nav-menu a::after {
        display: none;
    }

    .auth-actions {
        margin-left: 0;
        margin-top: 1rem;
        order: 4;
    }

    .user-welcome {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero {
        height: 80vh;
        height: calc(var(--vh, 1vh) * 80);
        min-height: 500px;
        background-attachment: scroll;
        padding: 2rem 1rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .hero-description br {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        font-size: 1rem;
        padding: 1rem 2rem;
        min-height: 50px;
    }

    /* Why Section Mobile */
    .why-section {
        padding: 3rem 1rem;
    }

    .why-container {
        max-width: 100%;
    }

    .why-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .why-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .why-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .why-description {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .feature-card {
        padding: 1.5rem;
        text-align: center;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
        font-size: 1.5rem;
    }

    .feature-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .feature-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .why-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: center;
    }

    .showcase-image {
        width: 100%;
        max-width: none;
        order: 2;
        height: 250px;
    }

    .showcase-content {
        order: 1;
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .showcase-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .stat-item {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Gallery Section Mobile */
    .gallery-section {
        padding: 3rem 0;
    }

    .gallery-container {
        padding: 0 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .gallery-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .gallery-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .gallery-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Enhanced Gallery Grid Mobile */
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 1rem;
        padding: 0 1rem 1rem;
        position: relative;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        flex: 0 0 280px;
        scroll-snap-align: start;
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        height: 200px;
    }

    .gallery-item:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        color: white;
        padding: 1.5rem 1rem 1rem;
        transform: translateY(0);
        transition: all 0.3s ease;
    }

    .gallery-overlay h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .gallery-overlay p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }

    /* Swipe Indicators Mobile */
    .swipe-indicator {
        display: block;
        width: 35px;
        height: 35px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        font-size: 1rem;
    }

    .swipe-indicator.left {
        left: 15px;
    }

    .swipe-indicator.right {
        right: 15px;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 3rem 1rem;
        background-attachment: scroll;
    }

    .cta-container {
        text-align: center;
        max-width: 100%;
    }

    .cta-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .cta-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .cta-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    /* Footer Mobile */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 1rem;
        max-width: none;
    }

    .footer-logo {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .footer-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .social-links {
        justify-content: center;
        gap: 1rem;
    }

    .social-link {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        display: inline-block;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .footer-links a:hover {
        background: rgba(212, 175, 55, 0.1);
        color: #d4af37;
        padding-left: 1rem;
    }

    /* Contact Info Mobile */
    .contact-info {
        text-align: left;
        max-width: 100%;
    }

    .contact-info > div {
        margin-bottom: 1rem;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 8px;
        border-left: 3px solid #d4af37;
    }

    .contact-icon {
        margin-bottom: 0.5rem;
    }

    .contact-details {
        margin-left: 0;
    }

    .contact-details strong {
        display: block;
        margin-bottom: 0.25rem;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #d4af37;
    }

    .contact-details a {
        font-size: 0.9rem;
        padding: 0.25rem 0;
        display: inline-block;
    }

    /* Hours List Mobile */
    .hours-list {
        background: rgba(255, 255, 255, 0.6);
        border-radius: 12px;
        padding: 1rem;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .hours-list li {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hours-list li:last-child {
        border-bottom: none;
    }

    .day {
        font-weight: 600;
        font-size: 0.9rem;
    }

    .time {
        font-size: 0.8rem;
        color: #d4af37;
        font-weight: 500;
    }

    .special-note {
        margin-top: 1rem;
        padding: 1rem;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(246, 213, 92, 0.1));
        border-radius: 10px;
        text-align: center;
    }

    .special-note strong {
        display: block;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .special-note p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    /* Footer Bottom Mobile */
    .footer-bottom {
        text-align: center;
        padding: 1.5rem 1rem 0;
        margin-top: 2rem;
    }

    .copyright {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .developer-credit {
        font-weight: 600;
        color: #d4af37;
        text-decoration: none;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .developer-credit:hover {
        background: rgba(212, 175, 55, 0.1);
    }

    /* Show Mobile Quick Actions */
    .mobile-quick-actions {
        display: flex;
    }

    /* Adjust floating contact position */
    .floating-contact {
        bottom: 100px;
        right: 15px;
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
        z-index: 9999;
    }

    .floating-contact:active {
        transform: scale(0.9);
    }

    /* Flash Message Mobile */
    .flash-message {
        top: auto;
        bottom: 120px;
        right: 15px;
        left: 15px;
        max-width: none;
        border-radius: 12px;
        padding: 1rem;
        font-size: 0.9rem;
        text-align: center;
    }

    /* Add padding to main content for mobile quick actions */
    body {
        padding-bottom: 80px;
    }
}

/* Small mobile devices (iPhone SE, etc.) */
@media (max-width: 480px) {
    .header {
        padding: 0.4rem 0;
        padding-top: calc(0.4rem + var(--safe-area-inset-top));
    }
    
    .nav-container {
        padding: 0 0.8rem;
        padding-left: calc(0.8rem + var(--safe-area-inset-left));
        padding-right: calc(0.8rem + var(--safe-area-inset-right));
    }

    .logo, .logo-container {
        font-size: 1.5rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-icon img {
        width: 70px !important;
    }

    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
        padding: 0.6rem;
    }

    .hamburger-line {
        width: 24px;
        height: 2px;
    }

    .cart-btn, .order-btn {
        min-width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .cart-count {
        min-width: 20px;
        height: 20px;
        font-size: 0.65rem;
        top: -6px;
        right: -6px;
    }

    .nav-menu {
        padding: 1.5rem;
        padding-top: calc(1.5rem + var(--safe-area-inset-top));
        padding-bottom: calc(1.5rem + var(--safe-area-inset-bottom));
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
        min-height: 56px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .why-title,
    .gallery-title,
    .cta-title {
        font-size: 1.8rem;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 0.9rem;
        padding: 0.9rem 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .showcase-content {
        padding: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .gallery-item {
        flex: 0 0 300px;
        height: 220px;
    }

    .gallery-overlay {
        padding: 1.5rem;
    }

    .mobile-action-btn {
        padding: 0.6rem 0.3rem;
    }

    .mobile-action-btn i {
        font-size: 1.1rem;
    }

    .mobile-action-btn span {
        font-size: 0.65rem;
    }

    .floating-contact {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .footer-brand {
        max-width: none;
    }

    .social-links {
        justify-content: center;
    }

    .special-note {
        padding: 1rem;
    }

    .container,
    .hero-content,
    .why-container,
    .gallery-container,
    .cta-container {
        padding: 0 1rem;
        padding-left: calc(1rem + var(--safe-area-inset-left));
        padding-right: calc(1rem + var(--safe-area-inset-right));
    }
}

/* Large Mobile Devices */
@media (min-width: 376px) and (max-width: 480px) {
    .gallery-item {
        flex: 0 0 300px;
    }

    .gallery-item img {
        height: 220px;
    }

    .showcase-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .nav-container {
        padding: 0 0.6rem;
        padding-left: calc(0.6rem + var(--safe-area-inset-left));
        padding-right: calc(0.6rem + var(--safe-area-inset-right));
    }

    .logo, .logo-container {
        font-size: 1.3rem;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }

    .hamburger-line {
        width: 20px;
    }

    .cart-btn, .order-btn {
        min-width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
    }
}

/* =====================================================
   LANDSCAPE MOBILE ORIENTATION
   ===================================================== */
@media (max-width: 768px) and (orientation: landscape) {
    .nav-menu {
        padding: 1rem;
        gap: 1rem;
        padding-top: calc(1rem + var(--safe-area-inset-top));
        padding-bottom: calc(1rem + var(--safe-area-inset-bottom));
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 0.75rem 1.5rem;
        min-height: 48px;
        min-width: auto;
    }

    .hero {
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
    }

    .mobile-quick-actions {
        padding: 0.5rem 0.75rem;
    }

    .floating-contact {
        bottom: 70px;
    }
}

/* =====================================================
   ACCESSIBILITY & TOUCH IMPROVEMENTS
   ===================================================== */
@media (hover: none) and (pointer: coarse) {
    .mobile-menu-toggle:hover {
        background: rgba(201, 169, 110, 0.2);
    }
    
    .nav-menu a:hover {
        background: rgba(201, 169, 110, 0.1);
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
    }
    
    .btn-primary:hover, .btn-secondary:hover {
        transform: translateY(-2px);
    }
    
    .gallery-item:hover {
        transform: translateY(-5px);
    }
    
    /* Larger touch targets for better usability */
    .nav-menu a {
        min-height: 64px;
    }
    
    .mobile-menu-toggle {
        min-width: 48px;
        min-height: 48px;
    }
}

/* =====================================================
   FOCUS STYLES FOR KEYBOARD NAVIGATION
   ===================================================== */
.mobile-menu-toggle:focus-visible,
.nav-menu a:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.order-btn:focus-visible,
.cart-btn:focus-visible,
.touch-friendly:focus,
.mobile-action-btn:focus,
.social-link:focus-visible,
.footer-links a:focus-visible,
.contact-details a:focus-visible {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

/* =====================================================
   REDUCED MOTION SUPPORT
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .mobile-menu-toggle,
    .hamburger-line,
    .nav-menu,
    .nav-menu a {
        transition: none;
    }
    
    .cart-count {
        animation: none;
    }

    .hero::before,
    .why-section::before,
    .why-section::after,
    .gallery-section::before,
    .cta-section::before {
        animation: none;
    }

    .floating-contact {
        animation: none;
    }
}

/* =====================================================
   HIGH CONTRAST MODE SUPPORT
   ===================================================== */
@media (prefers-contrast: high) {
    .nav-menu {
        background: rgb(253, 252, 248);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    .nav-menu a {
        background: rgba(0, 0, 0, 0.1);
        border: 1px solid var(--primary-dark);
    }

    .feature-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgb(255, 255, 255);
        border: 1px solid rgba(0, 0, 0, 0.2);
    }

    .btn-primary,
    .btn-secondary {
        border: 2px solid var(--primary-dark);
    }

    .mobile-action-btn {
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .gallery-item {
        border: 1px solid rgba(0, 0, 0, 0.2);
    }
}

/* =====================================================
   DARK MODE SUPPORT
   ===================================================== */
@media (prefers-color-scheme: dark) {
    .nav-menu {
        background: linear-gradient(135deg, rgba(26, 32, 44, 0.98) 0%, rgba(45, 55, 72, 0.95) 100%);
    }

    .nav-menu a {
        color: white;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(212, 175, 55, 0.2);
        color: #d4af37;
    }

    .feature-card {
        background: rgba(26, 32, 44, 0.8);
        color: white;
    }

    .gallery-overlay {
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    }
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {
    .header,
    .mobile-menu-toggle,
    .nav-menu,
    .mobile-quick-actions,
    .floating-contact {
        display: none !important;
    }
    
    .main-content {
        margin-top: 0 !important;
    }
    
    .hero,
    .cta-section {
        background-attachment: scroll !important;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
    
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }

    .why-section,
    .gallery-section,
    .cta-section {
        page-break-inside: avoid;
    }

    body {
        padding-bottom: 0 !important;
    }
}