:root {
    --primary: #ff6cb5;
    --secondary: #54d3e0;
    --accent: #ff9040;
    --dark: #392b25;
    --light: #fff0d6;
    --white: #ffffff;
    --gray: #f7f7f7;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--gray);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Animation des donuts flottants */
.donut-floating {
    position: absolute;
    width: 150px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.donut-floating.donut-1 {
    top: 50px;
    left: 5%;
    animation-delay: 0s;
}

.donut-floating.donut-2 {
    bottom: 80px;
    right: 5%;
    animation-delay: 2s;
    width: 120px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Animation au clic */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Adaptation pour assurer la compatibilité avec les pages existantes */
.hero-section, 
.features-section, 
.products-section, 
.testimonials-section, 
.menu-hero, 
.menu-content-wrapper, 
.menu-promotion-section,
.candidature-hero,
.candidature-section,
.hero,
.features,
.donut-showcase,
.location {
    position: relative;
    overflow: hidden;
}

/* Support pour les animations de page candidature */
.floating-donut {
    animation: float 6s ease-in-out infinite;
}

.donut-1 {
    animation-delay: 0s;
}

.donut-2 {
    animation-delay: 2s;
}

.donut-3 {
    animation-delay: 4s;
}

/* Header & Navigation - VERSION AMÉLIORÉE */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.4s ease;
}

/* Header Top Bar */
.header-top-bar {
    background-color: var(--dark);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.top-bar-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 20px;
}

.top-bar-contact span,
.top-bar-hours span {
    display: flex;
    align-items: center;
}

.top-bar-contact i,
.top-bar-hours i {
    color: var(--primary);
    margin-right: 6px;
    font-size: 0.9rem;
}

/* Header Main */
.header-main {
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex: 0 0 200px;
}

.logo-link {
    display: block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo {
    max-width: 180px;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    position: relative;
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-nav a span {
    position: relative;
    z-index: 1;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease, left 0.3s ease;
    z-index: 0;
    border-radius: 2px;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
    left: 0;
}

.main-nav a.active {
    color: var(--primary);
}

/* Style pour le bouton Panel Vendeur */
.vendor-btn {
    padding: 10px 20px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0 4px 10px rgba(255, 144, 64, 0.3) !important;
    background-color: var(--accent) !important;
    color: var(--white) !important;
    transition: all 0.3s ease !important;
    margin-left: 15px;
}

.vendor-btn:hover {
    background-color: var(--primary) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 15px rgba(255, 108, 181, 0.4) !important;
}

.vendor-btn::after {
    display: none !important;
}

.vendor-btn i {
    font-size: 1rem;
}

/* Style pour le bouton Discord */
.discord-btn {
    padding: 10px 20px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0 4px 10px rgba(114, 137, 218, 0.3) !important;
    background-color: #7289da !important; /* Couleur Discord */
    color: var(--white) !important;
    transition: all 0.3s ease !important;
    margin-left: 15px;
}

.discord-btn:hover {
    background-color: #5e74bc !important; /* Couleur Discord plus foncée au survol */
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 15px rgba(114, 137, 218, 0.4) !important;
}

.discord-btn::after {
    display: none !important;
}

.discord-btn i {
    font-size: 1.1rem;
}

/* Header States */
.header-scrolled .header-top-bar {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
}

.header-scrolled .header-main {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-hidden {
    transform: translateY(-100%);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background-color: var(--white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.4s ease;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-logo {
    max-width: 140px;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: block;
}

.mobile-nav a.active {
    color: var(--primary);
}

/* Style pour le bouton mobile */
.mobile-vendor-btn {
    background-color: var(--accent);
    color: var(--white) !important;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 144, 64, 0.2);
    border: none;
}

/* Style pour le bouton Discord mobile */
.mobile-discord-btn {
    background-color: #7289da;
    color: var(--white) !important;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(114, 137, 218, 0.2);
    border: none;
}

.mobile-contact {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-contact a,
.mobile-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-size: 0.95rem;
}

.mobile-contact i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

/* Hero Section */
.hero {
    background: url('images/donut-pattern.png'), linear-gradient(135deg, #ff9fc2 0%, #ffda7b 100%);
    background-size: contain, cover;
    background-blend-mode: overlay;
    padding: 100px 0;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 212, 163, 0.6) 0%, rgba(255, 212, 163, 0) 70%);
    top: -250px;
    right: -250px;
    border-radius: 50%;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: translateY(0);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #555;
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(255, 144, 64, 0.3);
}

.btn:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 108, 181, 0.4);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: url('images/donut-pattern.png'), linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    background-size: contain, cover;
    background-blend-mode: overlay;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.75);
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 108, 181, 0.1) 0%, rgba(84, 211, 224, 0.1) 100%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: -1;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature:hover::before {
    transform: scale(1.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 8px 16px rgba(255, 108, 181, 0.3);
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
    opacity: 0.4;
    filter: blur(10px);
    transform: translateY(10px) scale(0.9);
}

.feature-icon i {
    font-size: 36px;
    color: var(--white);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.feature h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    bottom: -5px;
    left: 25%;
    border-radius: 2px;
    transition: var(--transition);
}

.feature:hover h3::after {
    width: 70%;
    left: 15%;
}

.feature p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Donut Showcase */
.donut-showcase {
    padding: 80px 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.donut-showcase::before,
.donut-showcase::after {
    content: '';
    position: absolute;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.donut-showcase::before {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.donut-showcase::after {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}

.donut-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark);
    position: relative;
    z-index: 2;
}

.donut-showcase h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 15px auto 0;
    border-radius: 2px;
}

.donuts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.donut {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.donut:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.donut-img {
    height: 200px;
    overflow: hidden;
}

.donut-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.donut:hover .donut-img img {
    transform: scale(1.1);
}

.donut-info {
    padding: 25px;
}

.donut-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.donut-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.price {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.3rem;
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(255, 144, 64, 0.1);
    border-radius: 20px;
}

.donut-showcase .btn {
    display: block;
    width: max-content;
    margin: 0 auto;
}

/* Location Section */
.location {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.location h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.location h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent), var(--secondary));
    margin: 15px auto 0;
    border-radius: 2px;
}

.location p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #555;
}

.map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Menu Page Styles */
.menu-header {
    text-align: center;
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #ffdcf3 0%, #c5fdff 100%);
}

.menu-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.menu-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #555;
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.category-btn {
    background-color: var(--white);
    color: var(--dark);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.category-btn:hover {
    background-color: var(--accent);
    color: var(--white);
}

.category-btn.active {
    background-color: var(--primary);
    color: var(--white);
}

.menu-section {
    padding: 60px 0;
    background-color: var(--white);
    margin-bottom: 30px;
}

.menu-section:last-child {
    margin-bottom: 0;
}

.menu-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--dark);
    position: relative;
}

.menu-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 15px auto 0;
    border-radius: 2px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item {
    background-color: var(--gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.menu-item-img {
    height: 200px;
    overflow: hidden;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-item:hover .menu-item-img img {
    transform: scale(1.1);
}

.menu-item-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.menu-item-name {
    font-size: 1.3rem;
    color: var(--dark);
    margin: 0;
}

.menu-item-price {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.3rem;
    padding: 3px 12px;
    background-color: rgba(255, 144, 64, 0.1);
    border-radius: 20px;
}

.menu-item-description {
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.menu-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.menu-item-tags span {
    font-size: 0.8rem;
    padding: 4px 12px;
    background-color: var(--white);
    color: #666;
    border-radius: 50px;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/donut-pattern.png');
    background-size: 300px;
    opacity: 0.05;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Logo et infos */
.footer-info {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.footer-info.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.footer-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.footer-info p:hover {
    transform: translateX(5px);
}

.footer-info p i {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: 50%;
    padding: 14px;
    font-size: 0.9rem;
}

.footer-info a {
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-info a:hover {
    color: var(--accent);
}

/* Liens rapides */
.footer-links {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.footer-links.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-links h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Nos spécialités - VERSION AMÉLIORÉE */
.footer-specialties {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.4s;
}

.footer-specialties.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-specialties h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 10px;
}

.footer-specialties h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.specialty-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.specialty-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.specialty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.specialty-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.specialty-card:hover::before {
    opacity: 0.1;
}

.specialty-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(255, 108, 181, 0.3);
}

.specialty-icon i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.specialty-card:hover .specialty-icon i {
    transform: rotateY(180deg);
}

.specialty-card h5 {
    font-size: 1rem;
    color: var(--white);
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.specialty-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    bottom: -40px;
    right: -40px;
}

.specialty-card:nth-child(1) .specialty-icon {
    background: linear-gradient(135deg, #ff6cb5 0%, #ff9a85 100%);
}

.specialty-card:nth-child(2) .specialty-icon {
    background: linear-gradient(135deg, #54d3e0 0%, #a3f9f1 100%);
}

.specialty-card:nth-child(3) .specialty-icon {
    background: linear-gradient(135deg, #ff9040 0%, #ffcb6b 100%);
}

.specialty-card:nth-child(4) .specialty-icon {
    background: linear-gradient(135deg, #a573ff 0%, #6ec3ff 100%);
}

/* Séparateur décoratif */
.footer-divider {
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.donut-divider {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.1) 20%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0.1) 80%, 
        rgba(255,255,255,0) 100%);
    position: relative;
}

.donut-divider::before, 
.donut-divider::after {
    content: '🍩';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    background: var(--dark);
    padding: 0 10px;
}

/* Copyright */
.footer-copyright {
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-policy a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 10px;
    transition: all 0.3s ease;
}

.footer-policy a:hover {
    color: var(--accent);
}

/* Bouton retour en haut */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    box-shadow: 0 5px 15px rgba(255, 108, 181, 0.3);
    transition: all 0.3s ease;
    z-index: 99;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

#back-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 108, 181, 0.4);
}

/* Responsive styles */
@media (max-width: 1200px) {
    .vendor-btn span, .discord-btn span {
        display: none;
    }
    
    .vendor-btn, .discord-btn {
        padding: 10px !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .vendor-btn i, .discord-btn i {
        margin: 0 !important;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .features-grid,
    .donuts-grid,
    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .main-nav {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* Header responsive */
    .header-top-bar {
        display: none;
    }
    
    .main-nav {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .header-main .container {
        padding: 10px 20px;
    }
    
    .nav-container {
        margin-left: auto;
    }
    
    /* Autres éléments responsives */
    .hero {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .feature {
        padding: 30px 20px;
    }
    
    .menu-item-img {
        height: 180px;
    }
    
    .location h2,
    .donut-showcase h2,
    .menu-section h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-info, 
    .footer-links, 
    .footer-specialties {
        text-align: center;
    }
    
    .footer-info p {
        justify-content: center;
    }
    
    .footer-links h4::after,
    .footer-specialties h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .specialty-cards {
        max-width: 400px;
        margin: 0 auto;
    }
    
    #back-to-top {
        right: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Responsive pour les donuts flottants */
    .donut-floating {
        width: 100px;
    }
    
    .donut-floating.donut-1 {
        left: 0;
    }
    
    .donut-floating.donut-2 {
        right: 0;
        width: 80px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .features-grid,
    .donuts-grid,
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .category-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .menu-header h1 {
        font-size: 2rem;
    }
    
    .specialty-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mobile-menu {
        width: 100%;
        max-width: none;
    }
    
    /* Masquer les donuts flottants sur très petits écrans */
    .donut-floating {
        display: none;
    }
}