/* Saron's Kitchen UK - Enhanced Mobile Responsive Stylesheet */

/* =====================================================
   RESET & BASE STYLES
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --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);
    
    /* 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);
}

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;
}

/* =====================================================
   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 {
    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;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
}

/* =====================================================
   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;
}

.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
   ===================================================== */
.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;
}

/* =====================================================
   HERO SECTIONS
   ===================================================== */
.hero {
    height: 100vh;
    height: 100dvh;
    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);
    max-width: 800px;
    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;
    max-width: 700px;
    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));
}

.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;
}

/* =====================================================
   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;
}

.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;
}

.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);
}

/* =====================================================
   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;
    }
}

/* Tablets and below */
@media (max-width: 768px) {
    .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 {
        font-size: 1.8rem;
        order: 1;
        z-index: 10001;
    }
    
    .cart-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: 112dvh;
        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: 0px;
        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;
    }

    .nav-menu a {
        font-size: 1.4rem;
        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;
    }

    .desktop-order-btn {
        display: none;
    }

    .nav-menu .mobile-order-btn {
        display: block;
        background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
        color: #fff;
        margin-top: 2rem;
        padding: 1.5rem 3rem;
        border-radius: 30px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
        border: none;
        font-size: 1.1rem;
    }

    .hero {
        height: 80vh;
        height: 100dvh;
        min-height: 500px;
        background-attachment: scroll;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 200px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .why-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-image {
        height: 300px;
        order: -1;
    }

    .showcase-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item {
        height: 280px;
    }

    .cta-section {
        background-attachment: scroll;
        padding: 4rem 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Small mobile devices */
@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 {
        font-size: 1.5rem;
    }

    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
        padding: 0.6rem;
    }

    .hamburger-line {
        width: 24px;
        height: 2px;
    }

    .cart-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: 3rem;
        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;
    }

    .nav-menu .mobile-order-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
        margin-top: 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 {
        height: 250px;
    }

    .gallery-overlay {
        padding: 1.5rem;
    }

    .footer-brand {
        max-width: none;
    }

    .social-links {
        justify-content: center;
    }

    .special-note {
        padding: 1rem;
    }

    .container {
        padding: 0 1rem;
        padding-left: calc(1rem + var(--safe-area-inset-left));
        padding-right: calc(1rem + var(--safe-area-inset-right));
    }

    .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));
    }
}

/* 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 {
        font-size: 1.3rem;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }

    .hamburger-line {
        width: 20px;
    }

    .cart-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));
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        min-height: 48px;
    }
    
    .nav-menu .mobile-order-btn {
        margin-top: 1rem;
        padding: 1rem 2rem;
    }

    .hero {
        height: 100vh;
        height: 100dvh;
    }
}

/* =====================================================
   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 {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

.nav-menu a:focus-visible {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.order-btn:focus-visible,
.cart-btn: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;
    }
    
    .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;
    }
}

/* =====================================================
   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);
    }

    .btn-primary,
    .btn-secondary {
        border: 2px solid var(--primary-dark);
    }
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {
    .header,
    .mobile-menu-toggle,
    .nav-menu {
        display: none !important;
    }
    
    .main-content {
        margin-top: 0 !important;
    }
    
    .hero,
    .cta-section {
        background-attachment: scroll !important;
    }
    
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }
}
