/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B6F47;
    --secondary: #C9A86A;
    --accent: #E8D5B7;
    --dark: #2C1810;
    --cream: #FAF6F0;
    --warm-beige: #F5E6D3;
    --text-dark: #3E2723;
    --gold: #D4AF37;
    --gold-light: #E8C468;
    --bronze: #A67C52;
}

html {
    scroll-behavior: smooth;
}

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

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

/* ===== NAVIGATION GLASSMORPHISM ===== */
.navbar {
    background: rgba(250, 246, 240, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(139, 111, 71, 0.12);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.navbar.scrolled {
    background: rgba(250, 246, 240, 0.95);
    box-shadow: 0 8px 40px rgba(139, 111, 71, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
}

.nav-brand h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--dark);
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    padding: 8px 20px;
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(250,246,240,0.8));
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.nav-brand h1:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.35);
    border-color: var(--gold);
    background: linear-gradient(145deg, rgba(255,255,255,1), rgba(248,240,230,0.95));
}

.ampersand {
    font-size: 1.2em;
    font-weight: 900;
    font-style: italic;
    color: var(--gold);
    display: inline-block;
    transform: rotate(-8deg);
    margin: 0 0.15em;
    transition: all 0.3s ease;
}

.nav-brand h1:hover .ampersand {
    transform: rotate(-8deg) scale(1.2);
    color: var(--gold-light);
}

@keyframes shimmerAmpersand {
    0%, 100% {
        background-position: 0% center;
        transform: rotate(-5deg) scale(1);
    }
    50% {
        background-position: 200% center;
        transform: rotate(-5deg) scale(1.1);
    }
}

.hero-content .ampersand {
    font-size: 1.4em;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.6));
    -webkit-text-fill-color: var(--gold-light);
    color: var(--gold-light);
    background: none;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.4);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
}

.nav-menu a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.nav-menu a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

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

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    margin: 4px 0;
    transition: 0.4s;
    border-radius: 3px;
}

/* ===== HERO PREMIUM ===== */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.45), rgba(139, 111, 71, 0.35)),
                url('boulangerie-hero.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(139, 111, 71, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 3px 6px 12px rgba(0,0,0,0.4);
    letter-spacing: 3px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #F4E4C1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    font-family: 'Inter', sans-serif;
}

.hero-location {
    font-size: 0.85rem !important;
    letter-spacing: 1.5px !important;
    text-transform: none !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin-top: -1.5rem !important;
    margin-bottom: 2rem !important;
    display: block;
    font-style: italic;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* ===== BUTTONS PREMIUM ===== */
.btn {
    display: inline-block;
    padding: 18px 48px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.35);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: width 0.8s ease, height 0.8s ease, top 0.8s ease, left 0.8s ease;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    color: white;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.6);
}

/* ===== SECTIONS ===== */
.section {
    padding: 60px 0;
    position: relative;
}


.section-alt {
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--cream) 100%);
}

.section-dark {
    background: linear-gradient(135deg, var(--dark) 0%, #3E2723 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 900;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
    border-radius: 3px;
    animation: expandWidth 2s ease-in-out infinite;
}

@keyframes expandWidth {
    0%, 100% { width: 100px; }
    50% { width: 140px; }
}

.section-dark .section-title {
    color: var(--accent);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-style: italic;
    font-weight: 300;
}

/* ===== GALERIE MODERNE PREMIUM ===== */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(139, 111, 71, 0.2);
    height: 220px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 3px solid transparent;
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4) 0%, rgba(44, 24, 16, 0.7) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.gallery-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 80%;
    height: 80%;
    border: 3px solid var(--gold);
    border-radius: 15px;
    z-index: 2;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gallery-card:hover::before {
    opacity: 1;
}

.gallery-card:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.gallery-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 70px rgba(139, 111, 71, 0.35);
    border-color: var(--gold);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.95) contrast(1.05);
}

.gallery-card:hover img {
    transform: scale(1.2) rotate(2deg);
    filter: brightness(1.1) contrast(1.1);
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 3;
    transform: translateY(120%);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gallery-card:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.8);
    letter-spacing: 1.5px;
}

/* ===== PRODUITS PREMIUM ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 280px;
    box-shadow: 0 10px 40px rgba(139, 111, 71, 0.2);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 3px solid transparent;
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: default;
    display: block;
    text-decoration: none;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.7) 0%, rgba(139, 111, 71, 0.6) 100%);
    transition: all 0.4s ease;
    z-index: 1;
}

.product-card:hover .product-overlay {
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.5) 0%, rgba(139, 111, 71, 0.4) 100%);
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 111, 71, 0.35);
    border-color: var(--gold);
}

.product-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 25px;
    text-align: left;
}

.product-card h3 {
    font-family: 'Poppins', sans-serif;
    color: white;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.product-card:hover h3 {
    color: var(--gold-light);
    transform: translateX(8px);
}

.product-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Images de fond pour chaque catégorie */
.product-pains {
    background-image: url('pain-bg.png');
}

.product-viennoiseries {
    background-image: url('https://images.unsplash.com/photo-1555507036-ab1f4038808a?w=800&q=80');
}

.product-patisseries {
    background-image: url('patisserie-bg.png');
}

.product-smoothies {
    background-image: url('smoothie.png');
}

.product-snacking {
    background-image: url('https://images.unsplash.com/photo-1509722747041-616f39b57569?w=800&q=80');
}

.product-boissons {
    background-image: url('cafe.png');
}


/* ===== FORMULES SANDWICH ===== */
.formules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.formule-card {
    background: linear-gradient(145deg, white 0%, var(--cream) 100%);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 50px rgba(139, 111, 71, 0.12);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.formule-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
    opacity: 0;
    transition: all 0.6s ease;
}

.formule-card:hover::before {
    opacity: 0.4;
    top: -50%;
    left: -50%;
}

.formule-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 70px rgba(139, 111, 71, 0.25);
    border-color: var(--gold);
}

.formule-info {
    flex: 1;
}

.formule-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
}

.formule-info p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 8px 0;
}

.formule-info p:last-of-type {
    margin-bottom: 0;
}

.formule-option {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--secondary);
}

.formule-card .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
    white-space: nowrap;
    margin-top: 15px;
    align-self: flex-start;
}

/* Section Commandes Groupées cliquable */
#commandes {
    cursor: pointer;
    transition: all 0.3s ease;
}

#commandes:hover {
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-beige) 100%);
}

/* ===== ANNIVERSAIRES ===== */
.birthday-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

.birthday-feature {
    background: linear-gradient(145deg, white 0%, var(--cream) 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(139, 111, 71, 0.12);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.birthday-feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

.birthday-feature:hover::before {
    opacity: 0.6;
    animation-play-state: paused;
}

.birthday-feature::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.birthday-feature:hover::after {
    opacity: 1;
}

.birthday-feature:hover {
    border-color: var(--gold);
    transform: translateY(-15px) scale(1.05) rotate(1deg);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.35);
}

.birthday-feature h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.birthday-feature:hover h3 {
    color: var(--gold);
    transform: scale(1.08);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.birthday-feature p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.order-steps {
    background: linear-gradient(145deg, white 0%, var(--warm-beige) 100%);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(139, 111, 71, 0.18);
    max-width: 1000px;
    margin: 0 auto;
}

.order-steps > h3 {
    font-family: 'Poppins', sans-serif !important;
    text-align: center !important;
    color: var(--primary) !important;
    font-size: 2.5rem !important;
    margin-bottom: 40px !important;
    margin-top: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
    position: relative !important;
    padding-bottom: 20px !important;
}

.order-steps > h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
    border-radius: 3px;
}

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

.step {
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.step:hover {
    transform: scale(1.08);
}

.step-number {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s ease;
}

.step:hover .step-number {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.step h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 700;
}

.step p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 0.95rem;
}

.order-steps .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* ===== HORAIRES ===== */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.hours-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.08));
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.hours-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hours-card:hover::before {
    opacity: 1;
}

.hours-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.hours-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hours-time {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
}

.hours-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

/* ===== FAQ ===== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(139, 111, 71, 0.12);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(139, 111, 71, 0.18);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px;
    cursor: pointer;
    background: var(--cream);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--warm-beige);
}

.faq-question h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.faq-icon {
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: bold;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.faq-item.active .faq-icon {
    transform: rotate(135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 22px;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(139, 111, 71, 0.12);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid transparent;
}

.contact-item:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 15px 50px rgba(139, 111, 71, 0.22);
    border-color: var(--gold);
}

.contact-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 5px 15px rgba(139, 111, 71, 0.2));
}

.contact-item h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 700;
}

.contact-item p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: linear-gradient(145deg, white, var(--cream));
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(139, 111, 71, 0.18);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid var(--accent);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form .btn {
    width: 100%;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--dark) 0%, #3E2723 100%);
    color: var(--accent);
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-content p {
    margin: 10px 0;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Animation classes for scroll reveal */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== RESPONSIVE ===== */

/* Tablets & Small Laptops */
@media (max-width: 1024px) {
    .section {
        padding: 80px 0;
    }

    .hero-content h2 {
        font-size: 4rem;
    }

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

/* Tablets Portrait */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .navbar .container {
        padding: 0.8rem 15px;
    }

    .nav-brand h1 {
        font-size: 1.1rem;
        padding: 6px 14px;
    }

    .nav-menu {
        position: fixed;
        left: 0;
        right: 0;
        top: 60px;
        flex-direction: column;
        background: rgba(250, 246, 240, 0.99);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        width: 100%;
        height: calc(100vh - 60px);
        text-align: center;
        transition: transform 0.35s ease, opacity 0.35s ease;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        box-shadow: 0 8px 30px rgba(139, 111, 71, 0.2);
        padding: 20px 0;
        gap: 0;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu li {
        padding: 16px 0;
        border-bottom: 1px solid rgba(139, 111, 71, 0.1);
        width: 100%;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 8px 30px;
        display: block;
        color: var(--dark);
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    /* Hero Mobile */
    .hero {
        height: 100svh;
        background-attachment: scroll;
        margin-top: 56px;
    }

    .hero-content h2 {
        font-size: 2.2rem;
        letter-spacing: 1px;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
        margin-bottom: 1.5rem;
    }

    .hero-location {
        font-size: 0.75rem !important;
        margin-top: -1rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* Sections Mobile */
    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: 0.5px;
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }

    /* Galerie Mobile */
    .gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-card {
        height: 220px;
        border-radius: 12px;
    }

    .gallery-info {
        padding: 15px;
    }

    .gallery-info h3 {
        font-size: 1.2rem;
    }

    /* Products Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .product-card {
        border-radius: 15px;
        height: 250px;
    }

    .product-content {
        padding: 25px 20px;
    }

    .product-card h3 {
        font-size: 1.4rem;
    }

    .product-card p {
        font-size: 0.9rem;
    }

    .product-icon {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .product-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .product-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Formules Mobile */
    .formules-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .formule-card {
        padding: 20px;
    }

    .formule-card h3 {
        font-size: 1.2rem;
    }

    .formule-card p {
        font-size: 0.9rem;
    }

    .formule-card .btn {
        width: 100%;
        margin-top: 15px;
    }

    /* Anniversaires Mobile */
    .birthday-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .birthday-feature {
        padding: 25px 20px;
    }

    .birthday-feature h3 {
        font-size: 1.3rem;
    }

    .birthday-feature p {
        font-size: 0.95rem;
    }

    .feature-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .birthday-feature h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .birthday-feature p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .order-steps {
        padding: 25px 15px;
        border-radius: 15px;
        margin: 0 10px;
    }

    .order-steps > h3 {
        font-size: 1.8rem;
        margin-bottom: 25px;
        margin-top: 10px;
        padding-bottom: 15px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }

    .step {
        text-align: center;
        padding: 0 10px;
    }

    .step h4 {
        font-size: 1.2rem;
    }

    .step p {
        font-size: 0.95rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .step h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .step p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Horaires Mobile */
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    .hours-card {
        padding: 30px 20px;
    }

    .hours-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .hours-time {
        font-size: 1.6rem;
    }

    /* FAQ Mobile */
    .faq-container {
        padding: 0 5px;
    }

    .faq-item {
        margin-bottom: 12px;
        border-radius: 12px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 10px;
    }

    .faq-icon {
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    .faq-item.active .faq-answer {
        padding: 15px;
    }

    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }

    .contact-info {
        gap: 15px;
    }

    .contact-item {
        padding: 25px 20px;
        border-radius: 15px;
        gap: 15px;
    }

    .contact-item:hover {
        transform: translateX(5px) scale(1.01);
    }

    .contact-icon {
        font-size: 2.5rem;
    }

    .contact-item h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .contact-item p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 12px;
        font-size: 1rem;
    }

    .contact-form textarea {
        min-height: 130px;
    }

    /* Buttons Mobile */
    .btn {
        padding: 14px 35px;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .btn-primary {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    }

    /* Footer Mobile */
    .footer {
        padding: 30px 0;
    }

    .footer-content p {
        font-size: 0.9rem;
        padding: 0 15px;
        margin: 5px 0;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    /* Navigation Extra Small */
    .nav-brand h1 {
        font-size: 1rem;
        padding: 5px 12px;
    }

    .nav-menu {
        padding: 10px 0;
        top: 54px;
    }

    .nav-menu li {
        padding: 14px 0;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 8px 20px;
    }

    /* Hero Extra Small */
    .hero {
        height: 100svh;
        min-height: unset;
        margin-top: 54px;
    }

    .hero-content h2 {
        font-size: 1.7rem;
        letter-spacing: 0.5px;
        margin-bottom: 0.6rem;
    }

    .hero-content p {
        font-size: 0.8rem;
        letter-spacing: 1px;
        margin-bottom: 1.2rem;
    }

    .hero-location {
        font-size: 0.7rem !important;
        margin-top: -0.8rem !important;
        margin-bottom: 1.2rem !important;
    }

    /* Sections Extra Small */
    .section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 1.6rem;
        letter-spacing: 0px;
        margin-bottom: 0.6rem;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
        bottom: -8px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.8rem;
        padding: 0 5px;
    }

    /* Galerie Extra Small */
    .gallery {
        gap: 12px;
    }

    .gallery-card {
        height: 200px;
        border-radius: 10px;
    }

    .gallery-info {
        padding: 12px 15px;
    }

    .gallery-info h3 {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }

    /* Products Extra Small */
    .products-grid {
        gap: 15px;
    }

    .product-card {
        border-radius: 12px;
        height: 280px;
    }

    .product-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .product-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.7rem;
    }

    .product-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Anniversaires Extra Small */
    .birthday-grid {
        gap: 15px;
    }

    .birthday-feature {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .birthday-feature h3 {
        font-size: 1.2rem;
        margin-bottom: 0.7rem;
    }

    .birthday-feature p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .order-steps {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .order-steps > h3 {
        font-size: 1.8rem;
        margin-bottom: 25px;
        margin-top: 10px;
        padding-bottom: 15px;
    }

    .steps {
        gap: 15px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .step h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .step p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Horaires Extra Small */
    .hours-grid {
        gap: 12px;
    }

    .hours-card {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .hours-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .hours-time {
        font-size: 1.4rem;
    }

    /* FAQ Extra Small */
    .faq-item {
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .faq-question {
        padding: 12px;
    }

    .faq-question h3 {
        font-size: 0.9rem;
    }

    .faq-icon {
        font-size: 1.2rem;
    }

    .faq-item.active .faq-answer {
        padding: 12px;
    }

    .faq-answer p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Contact Extra Small */
    .contact-grid {
        gap: 20px;
    }

    .contact-info {
        gap: 12px;
    }

    .contact-item {
        padding: 15px 12px;
        gap: 12px;
        border-radius: 10px;
    }

    .contact-icon {
        font-size: 1.8rem;
    }

    .contact-item h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .contact-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .contact-form-wrapper {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        margin-bottom: 12px;
        border-radius: 8px;
        font-size: 0.9rem;
    }

    .contact-form textarea {
        min-height: 100px;
    }

    /* Buttons Extra Small */
    .btn {
        padding: 10px 25px;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    /* Footer Extra Small */
    .footer {
        padding: 25px 0;
    }

    .footer-content p {
        font-size: 0.85rem;
        margin: 5px 0;
        padding: 0 10px;
    }
}

/* Very Small Screens */
@media (max-width: 360px) {
    .hero {
        height: 45vh;
        min-height: 350px;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .section {
        padding: 25px 0;
    }

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

    .gallery-card {
        height: 180px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
}
