/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-color: #ff6b6b;
    --text-color: #333;
    --text-light: #666;
    --sakura-pink: #ffb7c5;
    --sakura-light: #fce4ec;
    --border-color: #e5e5e5;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-light);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.logo-icon {
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 12px;
    font-weight: 500;
    color: var(--accent-color);
    letter-spacing: 2px;
    margin-top: -2px;
}

.logo-custom:hover {
    transform: scale(1.05) translateY(-1px);
}

.logo-custom:hover .logo-icon {
    transform: rotate(10deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

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

.brand-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

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

.nav-link.commander {
    color: var(--text-color);
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link.commander:hover {
    color: var(--accent-color);
}

.language-select {
    border: 2px solid var(--border-color);
    border-radius: 25px;
    padding: 8px 16px 8px 12px;
    background: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    min-width: 120px;
}

.language-select:hover {
    border-color: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.language-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.language-select option {
    padding: 8px 12px;
    background: white;
    color: var(--primary-color);
}

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

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

/* Hero Section */
.hero {
    padding-top: 120px;
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sakura-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -3;
    
    /* Background image layer */
    background-image: url('newbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Dark overlay for text readability */
.sakura-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Gradient overlay layer */
.sakura-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 183, 197, 0.4) 0%, 
        rgba(255, 255, 255, 0.6) 30%,
        rgba(252, 228, 236, 0.5) 70%,
        rgba(255, 183, 197, 0.3) 100%
    );
    z-index: 2;
}

/* Floating sakura decorative elements */
.hero::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 183, 197, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: 20%;
    right: 10%;
    z-index: -1;
    animation: sakura-float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 183, 197, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 20%;
    left: 15%;
    z-index: -1;
    animation: sakura-float 8s ease-in-out infinite reverse;
}


@keyframes sakura-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
    position: relative;
    z-index: 3;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 18px;
    color: white;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    opacity: 0.95;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

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

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

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

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

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

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
    position: relative;
    z-index: 3;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.hero-img:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 1);
}

/* Sushi Gallery */
.sushi-gallery {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }

/* Sections */
.horaires, .menu, .contact {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

/* Horaires */
.horaires-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.horaire-card {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.horaire-card.grouped {
    padding: 30px 25px;
}

.horaire-card.single {
    background: linear-gradient(135deg, var(--sakura-light) 0%, white 100%);
}

.horaire-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sakura-pink), var(--accent-color));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.horaire-card:hover::before {
    transform: translateX(0);
}

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

.horaire-icons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.horaire-icon {
    font-size: 28px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.horaire-card.single .horaire-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

.horaire-card:hover .horaire-icon {
    transform: scale(1.15) rotate(8deg);
    animation-play-state: paused;
}

.horaire-times {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.time-slot {
    background: var(--sakura-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
    margin: 0;
}

.closed-note {
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
    margin: 0;
    opacity: 0.8;
}

/* Différents délais d'animation pour les groupes */
.horaire-card:nth-child(1) .horaire-icon:nth-child(1) { animation-delay: 0s; }
.horaire-card:nth-child(1) .horaire-icon:nth-child(2) { animation-delay: 0.1s; }
.horaire-card:nth-child(1) .horaire-icon:nth-child(3) { animation-delay: 0.2s; }
.horaire-card:nth-child(1) .horaire-icon:nth-child(4) { animation-delay: 0.3s; }

.horaire-card:nth-child(2) .horaire-icon:nth-child(1) { animation-delay: 0.4s; }
.horaire-card:nth-child(2) .horaire-icon:nth-child(2) { animation-delay: 0.5s; }

.horaire-card:nth-child(3) .horaire-icon { animation-delay: 0.6s; }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.horaire-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.horaire-card p {
    color: var(--text-light);
    margin-bottom: 5px;
}

/* Menu Carousel */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.menu-carousel-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.menu-carousel {
    position: relative;
    width: 100%;
    height: 600px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    display: block;
}


/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-btn span {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

/* Dots Navigation */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

/* Thumbnail Strip */
.thumbnail-strip-container {
    margin-top: 20px;
    padding: 0 20px;
}

.thumbnail-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.thumbnail-strip::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.thumbnail-item {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.thumbnail-item.active {
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.thumbnail-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-light);
}

.thumbnail-item.active:hover {
    transform: scale(1.15);
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.thumbnail-swipe-hint {
    text-align: center;
    margin-top: 10px;
    opacity: 0.6;
}

.swipe-text {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Carousel Animation Effects */
.carousel-slide.slide-in-right {
    animation: slideInRight 0.5s ease-in-out;
}

.carousel-slide.slide-in-left {
    animation: slideInLeft 0.5s ease-in-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

/* Order Section */
.order {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--sakura-light) 0%, white 50%, var(--sakura-light) 100%);
}

.order-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.order-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: stretch;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.order-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    flex: 1;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.order-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.order-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.order-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.order-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.order-btn {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    margin-top: 10px;
}

.order-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 200px;
}

.feature-card {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.order-preview {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.order-preview h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.dishes-preview {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dish-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    background: var(--sakura-light);
    transition: all 0.3s ease;
}

.dish-item:hover {
    background: var(--accent-color);
    color: white;
    transform: translateX(5px);
}

.dish-emoji {
    font-size: 24px;
}

.dish-item span:last-child {
    font-weight: 500;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

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

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-card p, .contact-card a {
    color: var(--text-light);
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: white;
    border-top: 1px solid var(--border-color);
    padding: 40px 20px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-logo-custom {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.footer-logo-icon {
    font-size: 20px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo-main {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.footer-logo-sub {
    font-size: 10px;
    font-weight: 500;
    color: var(--accent-color);
    letter-spacing: 1.5px;
    margin-top: -1px;
}

.footer-logo-custom:hover {
    transform: scale(1.05);
}

.footer-logo-custom:hover .footer-logo-icon {
    transform: rotate(8deg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.footer-brand h3 {
    color: var(--primary-color);
    margin: 0;
}

.footer-brand p {
    color: var(--text-light);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-light);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Desktop large screens */
@media (min-width: 1200px) {
    .order-content {
        gap: 60px;
        max-width: 1100px;
    }

    .order-card.main-order {
        padding: 50px;
        min-height: 350px;
    }

    .order-features {
        min-width: 250px;
    }
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
        padding: 0 30px;
    }

    .hero-img {
        max-width: 350px;
    }

    .order-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .order-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 100%;
        max-width: 500px;
    }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
        gap: 20px;
    }

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

    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 20px;
    }
    
    .hero-img {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .logo-main {
        font-size: 14px;
    }
    
    .logo-sub {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
    
    .footer-logo-main {
        font-size: 12px;
    }
    
    .footer-logo-sub {
        font-size: 9px;
        letter-spacing: 1px;
    }
    
    .footer-logo-icon {
        font-size: 16px;
    }
    
    .footer-logo-section {
        gap: 12px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 20px;
    }
    
    .language-select {
        margin-top: 10px;
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .horaires-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .order-content {
        flex-direction: column;
        gap: 25px;
    }

    .order-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero {
        padding-top: 90px;
        min-height: auto;
    }
    
    .hero-container {
        padding: 15px;
        gap: 25px;
    }
    
    .hero-img {
        max-width: 250px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 15px;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 13px;
        border-radius: 25px;
    }
    
    .logo-main {
        font-size: 12px;
    }
    
    .logo-sub {
        font-size: 9px;
        letter-spacing: 1px;
    }
    
    .footer-logo-main {
        font-size: 11px;
    }
    
    .footer-logo-sub {
        font-size: 8px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .language-select {
        font-size: 12px;
        padding: 5px 10px;
        min-width: 100px;
    }
}

/* Very small devices */
@media (max-width: 360px) {
    .hero-img {
        max-width: 200px;
    }
    
    .hero-title {
        font-size: clamp(1.3rem, 8vw, 1.8rem);
    }
    
    .container, .hero-container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .menu-carousel-container {
        max-width: 300px;
    }
    
    .menu-carousel {
        height: 350px;
    }
    
    .thumbnail-item {
        width: 50px;
        height: 40px;
    }
    
    .thumbnail-strip {
        gap: 6px;
    }
    
    .btn {
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* Mobile background optimization */
@media (max-width: 768px) {
    .sakura-background {
        background-attachment: scroll; /* Better performance on mobile */
        background-position: center top;
    }
    
    .sakura-background::before {
        background: rgba(0, 0, 0, 0.4); /* Darker overlay on mobile for better readability */
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-top: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .menu-header {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .menu-carousel {
        height: 500px;
    }
    
    .menu-carousel-container {
        max-width: 500px;
    }
    
    .thumbnail-strip-container {
        margin-top: 15px;
        padding: 0 10px;
    }
    
    .thumbnail-item {
        width: 70px;
        height: 50px;
    }
    
    .thumbnail-strip {
        gap: 10px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn span {
        font-size: 18px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-carousel {
        height: 400px;
    }
    
    .menu-carousel-container {
        max-width: 350px;
    }
    
    .thumbnail-strip-container {
        margin-top: 10px;
        padding: 0 5px;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 45px;
    }
    
    .thumbnail-strip {
        gap: 8px;
    }
    
    .swipe-text {
        font-size: 10px;
    }
}

/* Offers Section */
.offers {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, white 50%, var(--sakura-light) 100%);
}

.offers-container {
    max-width: 800px;
    margin: 0 auto;
}

.offer-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.offer-card.special-offer {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, white 0%, var(--sakura-light) 100%);
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.offer-badge {
    position: absolute;
    top: -5px;
    right: 20px;
    z-index: 10;
}

.discount {
    background: linear-gradient(135deg, var(--accent-color), #ff4757);
    color: white;
    font-size: 28px;
    font-weight: 700;
    padding: 15px 20px;
    border-radius: 0 0 20px 20px;
    box-shadow: var(--shadow);
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.offer-content {
    padding: 40px 30px 35px;
    text-align: center;
}

.offer-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
    animation: bounce 2.5s ease-in-out infinite;
}

.offer-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-description {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.offer-description strong {
    color: var(--accent-color);
    font-weight: 700;
}

.offer-conditions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.condition-tag {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    box-shadow: var(--shadow-light);
}

.btn-offer {
    background: linear-gradient(135deg, var(--accent-color), #ff4757);
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 35px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-offer:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-offer:hover:before {
    left: 100%;
}

.btn-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff4757, var(--accent-color));
}

/* Mobile responsiveness for offers */
@media (max-width: 768px) {
    .offers {
        padding: 60px 15px;
    }
    
    .offer-content {
        padding: 30px 20px 25px;
    }
    
    .offer-card h3 {
        font-size: 24px;
    }
    
    .offer-description {
        font-size: 16px;
    }
    
    .discount {
        font-size: 24px;
        padding: 12px 16px;
        right: 15px;
    }
    
    .offer-conditions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .condition-tag {
        font-size: 13px;
        padding: 6px 14px;
    }
    
    .btn-offer {
        font-size: 16px;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .offer-icon {
        font-size: 50px;
        margin-bottom: 15px;
    }
    
    .offer-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .offer-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .discount {
        font-size: 22px;
        padding: 10px 14px;
    }
    
    .btn-offer {
        font-size: 15px;
        padding: 12px 25px;
        width: 100%;
        max-width: 280px;
    }
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .gallery-item {
        animation: fadeInUp 0.6s ease-out forwards;
        opacity: 0;
        transform: translateY(30px);
    }

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