/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    /* Color Palette - Warm & Appetizing */
    --primary: #FF9F0A;
    --primary-dark: #E68A00;
    --primary-light: #FFB340;
    --secondary: #2D2D2D;
    --accent: #FF6B6B;
    --success: #51CF66;
    
    /* Neutrals */
    --white: #FFFFFF;
    --cream: #FFF8F0;
    --light-gray: #F5F5F5;
    --gray: #8B8B8B;
    --dark: #1A1A1A;
    
    /* Typography */
    --font-display: 'Righteous', cursive;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.24);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--secondary);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-base);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* Enhanced focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Remove outline for mouse users, keep for keyboard */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible) {
    outline: none;
}

/* Ensure sufficient color contrast */
@media (prefers-contrast: high) {
    :root {
        --primary: #E68A00;
        --gray: #666666;
    }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-sm);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--primary);
}

.logo i {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    margin: 0 auto;
}

.nav-links a {
    font-weight: 500;
    color: var(--secondary);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-base);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: transparent;
    color: var(--secondary);
    padding: 14px 28px;
    border: 2px solid var(--secondary);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-add {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.btn-add:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.btn-add-small {
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
}

.btn-add-small:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.control-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.control-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.control-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.control-btn:disabled:hover {
    background: var(--white);
    color: var(--primary);
    transform: scale(1);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 140px 0 var(--spacing-xl);
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 159, 10, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        var(--cream);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.emoji-happy {
    display: inline-block;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: var(--spacing-md);
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-food-img {
    width: 500px;
    height: 500px;
    border-radius: var(--radius-full);
    object-fit: cover;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.hero-decoration {
    position: absolute;
    font-size: 48px;
}

.pepper {
    top: 5%;
    right: 5%;
    animation: rotate 10s linear infinite;
}

.garlic {
    bottom: 5%;
    left: 0;
    animation: rotate 10s linear infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.floating-card i {
    font-size: 1.3rem;
}

.home-card {
    top: 10%;
    left: -5%;
    background: var(--primary);
    color: var(--white);
    animation-delay: 0s;
}

.dessert-card {
    top: 5%;
    right: 15%;
    color: var(--primary);
    animation-delay: 0.5s;
}

.share-card {
    top: 50%;
    left: -8%;
    color: var(--primary);
    animation-delay: 1s;
}

.vegan-card {
    bottom: 20%;
    left: 5%;
    background: var(--success);
    color: var(--white);
    animation-delay: 1.5s;
}

.spices-card {
    bottom: 10%;
    right: 10%;
    background: var(--accent);
    color: var(--white);
    animation-delay: 2s;
}

.decorative-pepper,
.decorative-garlic {
    position: absolute;
    font-size: 3rem;
    z-index: 0;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.decorative-pepper {
    top: 5%;
    right: 5%;
}

.decorative-garlic {
    bottom: 5%;
    left: 0;
}

/* ============================================
   POPULAR DISHES
   ============================================ */
.popular-dishes {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--dark);
}

.dish-controls,
.testimonial-controls,
.chef-controls {
    display: flex;
    gap: var(--spacing-sm);
}

/* Carousel Container */
.dishes-grid {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.dishes-grid-wrapper {
    display: flex;
    gap: var(--spacing-md);
    transition: transform 0.5s ease;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: pan-y pinch-zoom;
}

.dishes-grid-wrapper:active {
    cursor: grabbing;
}

.dishes-grid-wrapper .dish-card {
    flex: 0 0 calc((100% - (var(--spacing-md) * 3)) / 4);
    max-width: calc((100% - (var(--spacing-md) * 3)) / 4);
    pointer-events: auto;
}

/* Responsive Carousel Layouts */
@media (max-width: 1199px) {
    .dishes-grid-wrapper .dish-card {
        flex: 0 0 calc((100% - (var(--spacing-md) * 2)) / 3);
        max-width: calc((100% - (var(--spacing-md) * 2)) / 3);
    }
}

@media (max-width: 991px) {
    .dishes-grid-wrapper .dish-card {
        flex: 0 0 calc((100% - var(--spacing-md)) / 2);
        max-width: calc((100% - var(--spacing-md)) / 2);
    }
}

@media (max-width: 767px) {
    .dishes-grid-wrapper .dish-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.dish-card {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    transition: all var(--transition-base);
    cursor: pointer;
    min-width: 0; /* Prevents grid overflow */
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.dish-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
}

.dish-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--dark);
}

.dish-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
}

.rating {
    display: flex;
    gap: 4px;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

.dish-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--dark);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: var(--spacing-xl) 0;
    background: var(--cream);
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.services-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chef-circle {
    width: 450px;
    height: 450px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 12px solid var(--primary);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.chef-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food-decoration {
    position: absolute;
    font-size: 4rem;
    z-index: 0;
    animation: float 4s ease-in-out infinite;
}

.top-left {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.top-right {
    top: 0;
    right: 0;
    animation-delay: 1s;
}

.bottom-left {
    bottom: 0;
    left: 0;
    animation-delay: 2s;
}

.bottom-right {
    bottom: 0;
    right: 0;
    animation-delay: 3s;
}

.services-text h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
}

.services-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: var(--spacing-md);
    max-width: 550px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 500;
}

.feature-item i {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    box-shadow: var(--shadow-sm);
}

/* ============================================
   MENU PACK
   ============================================ */
.menu-pack {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    text-align: center;
    color: var(--dark);
    margin-bottom: var(--spacing-lg);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 28px;
    border-radius: var(--radius-lg);
    background: transparent;
    border: 2px solid var(--light-gray);
    color: var(--secondary);
    font-weight: 600;
    transition: all var(--transition-base);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.menu-item {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    transition: all var(--transition-base);
    opacity: 1;
}

.menu-item.hidden {
    display: none;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
}

.menu-item h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--dark);
}

.menu-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-sm);
}

/* ============================================
   RESERVATION CTA
   ============================================ */
.reservation-cta {
    padding: var(--spacing-xl) 0;
    background: var(--cream);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.cta-text h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
}

.cta-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
}

.cta-image img {
    width: 500px;
    height: 500px;
    border-radius: var(--radius-full);
    object-fit: cover;
    box-shadow: var(--shadow-xl);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

/* Testimonials Carousel Container */
.testimonials-grid {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonials-grid-wrapper {
    display: flex;
    gap: var(--spacing-md);
    transition: transform 0.5s ease;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: pan-y pinch-zoom;
}

.testimonials-grid-wrapper:active {
    cursor: grabbing;
}

.testimonials-grid-wrapper .testimonial-card {
    flex: 0 0 calc((100% - (var(--spacing-md) * 3)) / 4);
    max-width: calc((100% - (var(--spacing-md) * 3)) / 4);
    pointer-events: auto;
}

/* Responsive Testimonials Carousel */
@media (max-width: 1199px) {
    .testimonials-grid-wrapper .testimonial-card {
        flex: 0 0 calc((100% - (var(--spacing-md) * 2)) / 3);
        max-width: calc((100% - (var(--spacing-md) * 2)) / 3);
    }
}

@media (max-width: 991px) {
    .testimonials-grid-wrapper .testimonial-card {
        flex: 0 0 calc((100% - var(--spacing-md)) / 2);
        max-width: calc((100% - var(--spacing-md)) / 2);
    }
}

@media (max-width: 767px) {
    .testimonials-grid-wrapper .testimonial-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.testimonial-card {
    background: var(--light-gray);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    min-width: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card p {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    font-style: italic;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.customer-info img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.customer-info h4 {
    font-weight: 600;
    color: var(--dark);
}

/* ============================================
   CHEFS
   ============================================ */
.chefs {
    padding: var(--spacing-xl) 0;
    background: var(--cream);
}

/* Chefs Carousel Container */
.chefs-grid {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.chefs-grid-wrapper {
    display: flex;
    gap: var(--spacing-md);
    transition: transform 0.5s ease;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: pan-y pinch-zoom;
}

.chefs-grid-wrapper:active {
    cursor: grabbing;
}

.chefs-grid-wrapper .chef-card {
    flex: 0 0 calc((100% - (var(--spacing-md) * 3)) / 4);
    max-width: calc((100% - (var(--spacing-md) * 3)) / 4);
    pointer-events: auto;
}

/* Responsive Chefs Carousel */
@media (max-width: 1199px) {
    .chefs-grid-wrapper .chef-card {
        flex: 0 0 calc((100% - (var(--spacing-md) * 2)) / 3);
        max-width: calc((100% - (var(--spacing-md) * 2)) / 3);
    }
}

@media (max-width: 991px) {
    .chefs-grid-wrapper .chef-card {
        flex: 0 0 calc((100% - var(--spacing-md)) / 2);
        max-width: calc((100% - var(--spacing-md)) / 2);
    }
}

@media (max-width: 767px) {
    .chefs-grid-wrapper .chef-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.chef-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    min-width: 0;
}

.chef-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.chef-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.chef-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    padding: var(--spacing-md);
    color: var(--dark);
}

.chef-card p {
    color: var(--gray);
    padding: 0 var(--spacing-md) var(--spacing-md);
}

/* ============================================
   APP DOWNLOAD
   ============================================ */
.app-download {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.app-text h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
}

.app-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
}

.app-buttons {
    display: flex;
    gap: var(--spacing-md);
}

.btn-app {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--dark);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.btn-app:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-app i {
    font-size: 2rem;
}

.btn-app div {
    text-align: left;
}

.btn-app small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.btn-app strong {
    display: block;
    font-size: 1.1rem;
}

.phone-frame {
    background: var(--dark);
    border-radius: 40px;
    padding: 20px;
    box-shadow: var(--shadow-xl);
    max-width: 350px;
    margin: 0 auto;
}

.phone-screen {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
}

.phone-screen img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(5, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col h3 {
    font-family: var(--font-display);
    margin-bottom: var(--spacing-md);
    color: var(--primary);
}

.footer-col p {
    color: var(--gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.newsletter {
    display: flex;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
}

.newsletter input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    outline: none;
}

.newsletter input::placeholder {
    color: var(--gray);
}

.newsletter button {
    background: var(--primary);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.newsletter button:hover {
    background: var(--primary-dark);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-col ul li a {
    color: var(--gray);
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-food-img {
        width: 450px;
        height: 450px;
    }
    
    .chef-circle {
        width: 400px;
        height: 400px;
    }
    
    .cta-image img {
        width: 450px;
        height: 450px;
    }

        .decorative-pepper,
    .decorative-garlic {
        z-index: 3;
        font-size: 2rem;
    }
    
    .decorative-pepper {
        top: 2%;
        right: 2%;
    }
    
    .decorative-garlic {
        bottom: 2%;
        left: 2%;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        animation: slideDown 0.3s ease;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content,
    .services-content,
    .cta-content,
    .app-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-image,
    .services-image,
    .cta-image,
    .app-mockup {
        order: -1;
    }
    
    .hero-food-img,
    .chef-circle,
    .cta-image img {
        width: 100%;
        max-width: 400px;
        height: 400px;
        margin: 0 auto;
    }
    
    .section-header h2,
    .section-title,
    .services-text h2,
    .cta-text h2,
    .app-text h2 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Fix floating cards going off-screen on tablets */
    .home-card {
        left: 2%;
    }
    
    .share-card {
        left: 2%;
    }
    
    .vegan-card {
        left: 8%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Further adjust floating cards for smaller tablets */
    .floating-card {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
    
    .floating-card i {
        font-size: 1.1rem;
    }
    
    .home-card {
        left: 5%;
        top: 8%;
    }
    
    .dessert-card {
        right: 5%;
    }
    
    .share-card {
        left: 5%;
    }
    
    .vegan-card {
        left: 10%;
    }
    
    .spices-card {
        right: 5%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2,
    .section-title,
    .services-text h2,
    .cta-text h2,
    .app-text h2 {
        font-size: 2rem;
    }
    
    .floating-card {
        font-size: 0.75rem;
        padding: 8px 12px;
    }
    
    .floating-card i {
        font-size: 1rem;
    }
    
    .food-decoration {
        font-size: 2.5rem;
    }
    
    /* Keep cards well inside screen boundaries on mobile */
    .home-card {
        left: 8%;
        top: 5%;
    }
    
    .dessert-card {
        right: 8%;
        top: 3%;
    }
    
    .share-card {
        left: 8%;
        top: 48%;
    }
    
    .vegan-card {
        left: 12%;
        bottom: 18%;
    }
    
    .spices-card {
        right: 8%;
        bottom: 8%;
    }
}

/* Fix egg shape issue for very small screens */
@media (max-width: 450px) {
    .hero-food-img {
        width: 100%;
        max-width: 350px;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    .chef-circle {
        width: 100%;
        max-width: 350px;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    .cta-image img {
        width: 100%;
        max-width: 350px;
        height: auto !important;
        aspect-ratio: 1 / 1;
    }
}