/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #FF1744;
    --primary-yellow: #FFD600;
    --dark-red: #D50000;
    --light-yellow: #FFF59D;
    --orange: #FF6D00;
    --black: #000000;
    --dark-gray: #212121;
    --medium-gray: #424242;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 30px -12px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 12px 32px -12px rgba(0, 0, 0, 0.22);
    --gradient-primary: linear-gradient(135deg, var(--dark-red) 0%, #E65100 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-yellow) 0%, var(--light-yellow) 100%);
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

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

/* Accessibilité : respect des préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus visible cohérent */
:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    font-family: 'Bebas Neue', cursive;
    color: var(--primary-red);
    font-size: 2rem;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23000" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23000" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23000" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-content {
    color: var(--white);
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.4rem, 7vw, 4rem);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    overflow-wrap: break-word;
}

.highlight {
    color: var(--primary-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 62ch;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--primary-yellow);
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--white);
    margin-top: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--black);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: var(--black);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
}

.btn-full {
    width: 100%;
}

/* Food Showcase Animation */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-food-photo {
    width: 500px;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1571091718767-18b5b1457add?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80') center/cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-food-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 23, 68, 0.2) 0%, rgba(255, 109, 0, 0.2) 100%);
    z-index: 1;
}

.hero-food-photo::after {
    content: '🔥 FRAIS & CHAUD';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-yellow);
    color: var(--black);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 2;
}

.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
    z-index: 2;
    transition: all 0.3s ease;
}

.add-to-cart-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    position: relative;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.menu-item:hover .price-badge {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.food-showcase {
    position: relative;
    width: 400px;
    height: 400px;
}

.burger-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.burger {
    width: 200px;
    height: 180px;
    position: relative;
}

.bun-top {
    width: 200px;
    height: 60px;
    background: #D2691E;
    border-radius: 100px 100px 20px 20px;
    position: absolute;
    top: 0;
    box-shadow: inset 0 -5px 10px rgba(0, 0, 0, 0.1);
}

.bun-top::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #8B4513;
    border-radius: 50%;
    box-shadow: -20px 5px 0 #8B4513, 20px 5px 0 #8B4513, -10px -5px 0 #8B4513, 10px -5px 0 #8B4513;
}

.lettuce {
    width: 180px;
    height: 20px;
    background: #228B22;
    position: absolute;
    top: 50px;
    left: 10px;
    border-radius: 10px;
    transform: rotate(-2deg);
}

.tomato {
    width: 160px;
    height: 15px;
    background: #FF6347;
    position: absolute;
    top: 65px;
    left: 20px;
    border-radius: 8px;
}

.cheese {
    width: 170px;
    height: 12px;
    background: var(--primary-yellow);
    position: absolute;
    top: 75px;
    left: 15px;
    border-radius: 6px;
    transform: rotate(1deg);
}

.patty {
    width: 180px;
    height: 25px;
    background: #8B4513;
    position: absolute;
    top: 85px;
    left: 10px;
    border-radius: 12px;
    box-shadow: inset 0 -3px 6px rgba(0, 0, 0, 0.2);
}

.bun-bottom {
    width: 200px;
    height: 40px;
    background: #D2691E;
    border-radius: 20px 20px 100px 100px;
    position: absolute;
    bottom: 0;
    box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.1);
}

.fries-container {
    position: absolute;
    top: 20%;
    right: 10%;
}

.fries-box {
    width: 80px;
    height: 100px;
    background: var(--primary-red);
    position: relative;
    border-radius: 0 0 10px 10px;
}

.fries-box::before {
    content: '🌴 TROPIK';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-yellow);
    font-size: 8px;
    font-weight: bold;
}

.fry {
    width: 6px;
    height: 60px;
    background: var(--primary-yellow);
    position: absolute;
    bottom: 0;
    border-radius: 3px 3px 0 0;
}

.fry:nth-child(2) { left: 15px; height: 70px; }
.fry:nth-child(3) { left: 25px; height: 65px; }
.fry:nth-child(4) { left: 35px; height: 75px; }
.fry:nth-child(5) { left: 45px; height: 60px; }
.fry:nth-child(6) { left: 55px; height: 68px; }

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--black);
    clip-path: polygon(0 50%, 100% 80%, 100% 100%, 0 100%);
}

/* Sections communes */
.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-red);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
    background: var(--black);
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 75% 20%, var(--primary-red) 0%, transparent 55%);
    opacity: 0.12;
    z-index: 1;
}

.menu-section .container {
    position: relative;
    z-index: 2;
}

.menu-section .section-title {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 15px 30px;
    border: 3px solid var(--primary-yellow);
    background: var(--black);
    color: var(--primary-yellow);
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transition: left 0.25s ease;
    z-index: -1;
}

.category-btn:hover::before,
.category-btn.active::before {
    left: 0;
}

.category-btn.active,
.category-btn:hover {
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 0 20px;
}

.menu-item {
background: var(--white);
border-radius: 16px;
overflow: hidden;
box-shadow: var(--shadow);
transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
position: relative;
border: 2px solid transparent;
}

.menu-item:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-hover);
border: 2px solid var(--primary-yellow);
}

.menu-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, var(--primary-red), var(--primary-yellow));
opacity: 0;
transition: opacity 0.3s ease;
z-index: 1;
}

.menu-item:hover::before {
opacity: 0.05;
}

.menu-item-image {
width: 100%;
height: 200px;
background-size: cover;
background-position: center;
position: relative;
overflow: hidden;
transition: transform 0.4s ease;
}

.menu-item:hover .menu-item-image {
transform: scale(1.04);
}

.menu-item-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 23, 68, 0.2) 0%, rgba(255, 109, 0, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover .menu-item-image::before {
    opacity: 1;
}

.menu-item-content {
    padding: 1.5rem;
    position: relative;
}

.menu-item h3 {
    color: var(--black);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.menu-item p {
    color: var(--medium-gray);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

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

.menu-price {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.add-to-cart {
    width: 50px;
    height: 50px;
    background: var(--primary-yellow);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: scale(0.8);
}

.menu-item:hover .add-to-cart {
    opacity: 1;
    transform: scale(1);
}

.add-to-cart:hover {
    background: var(--dark-red);
    color: var(--white);
    transform: scale(1.1);
}

.add-to-cart i {
    font-size: 1.2rem;
    color: var(--black);
    transition: color 0.3s ease;
}

.add-to-cart:hover i {
    color: var(--white);
}

/* Order Section */
.order-section {
    padding: 80px 0;
    background: var(--white);
}

.order-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
}

.order-info {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 16px;
    height: fit-content;
}

.order-info h3 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.info-item i {
    color: var(--primary-red);
    width: 20px;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.location-info h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: var(--primary-red);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.2rem;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--dark-red);
}

.contact-details h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-details i {
    color: var(--primary-red);
    width: 20px;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--gradient-secondary);
    color: var(--black);
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

/* WhatsApp Floating Button - Polish Final */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.35);
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: whatsappPulse 3s ease-in-out infinite;
    border: 3px solid var(--primary-yellow);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 14px 34px -12px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    color: white;
    font-size: 2.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.whatsapp-float::before {
    content: '🚀 Commande en 1 clic !';
    position: absolute;
    right: 85px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(30px) scale(0.8);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    box-shadow: var(--shadow-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.whatsapp-float:hover::before {
    opacity: 1;
    transform: translateX(0) scale(1);
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

.customer strong {
    color: var(--primary-red);
    font-size: 1.1rem;
}

.customer span {
    display: block;
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    border-top: 1px solid #4A5568;
    padding-top: 1rem;
    text-align: center;
}

/* Responsive Design - Polish Final */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--gradient-primary);
        width: 100%;
        text-align: center;
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        color: var(--white);
        font-weight: 700;
        font-size: 1.1rem;
        padding: 1rem 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 20px;
    }

    .hero-stats {
        gap: 1.5rem;
        justify-content: center;
    }

    .hero-food-photo {
        width: 350px;
        height: 280px;
        margin: 0 auto;
    }

    .order-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }

    .menu-categories {
        justify-content: center;
        gap: 0.8rem;
    }

    .category-btn {
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-food-photo {
        width: 280px;
        height: 220px;
    }

    .category-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float i {
        font-size: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}
