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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #2c3e50 !important;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: all 0.3s ease;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-brand:hover {
    transform: translateY(-2px);
    color: #BD632F !important;
}

.navbar-brand:hover img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.navbar-nav .nav-link {
    color: #2c3e50 !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 15px;
    padding: 0.75rem 1rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(189, 99, 47, 0.1), transparent);
    transition: left 0.5s ease;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-link:hover {
    color: #BD632F !important;
    background: rgba(189, 99, 47, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(189, 99, 47, 0.2);
}

.navbar-nav .nav-link.active {
    color: #BD632F !important;
    background: linear-gradient(135deg, rgba(189, 99, 47, 0.1), rgba(189, 99, 47, 0.05));
    box-shadow: 0 4px 15px rgba(189, 99, 47, 0.15);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #BD632F, #7FB285);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(189, 99, 47, 0.3);
}

.navbar-nav .nav-link img {
    transition: all 0.3s ease;
    filter: grayscale(100%) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    height: 24px;
    width: auto;
}

.navbar-nav .nav-link:hover img {
    transform: scale(1.2) rotate(10deg);
    filter: grayscale(0%) drop-shadow(0 4px 8px rgba(189, 99, 47, 0.3));
}

.main-content {
    padding-top: 80px;
    min-height: calc(100vh - 80px);
}

.hero-section {
    background: linear-gradient(135deg, #FFEECF 0%, #FFFFFF 100%);
    padding: 1rem 0;
}

.hero-content h1 {
    color: #402E2A;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-content .lead {
    color: #402E2A;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.hero-image img {
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #BD632F, #7FB285);
    border: none;
    color: white;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(189, 99, 47, 0.3);
    background: linear-gradient(135deg, #7FB285, #BD632F);
}

.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h4 {
    color: #402E2A;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    overflow: hidden;
    position: relative;
}

.product-image img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info h4 {
    color: #402E2A;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-info .badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #BD632F, #7FB285);
    color: white;
}

.cta-section {
    background: linear-gradient(135deg, #BD632F 0%, #402E2A 100%);
    color: white;
}

.cta-section h2 {
    color: white;
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #7FB285, #FFEECF);
    border: none;
    color: #402E2A;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(127, 178, 133, 0.3);
    background: linear-gradient(135deg, #FFEECF, #7FB285);
}

.menu-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFEECF 100%);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.menu-card .card-body {
    padding: 2rem 1.5rem;
}

.menu-icon {
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.menu-card:hover .menu-icon {
    transform: scale(1.1);
}

.menu-image {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.menu-card:hover .menu-image {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}

.menu-card .card-title {
    font-weight: 600;
    color: #402E2A;
    margin-bottom: 0.5rem;
}

.menu-card .card-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

.price-tag {
    margin-top: 1rem;
}

.price-tag .badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #BD632F, #7FB285);
    color: white;
}

.display-4 {
    color: #402E2A;
    font-weight: 700;
}

.lead {
    color: #402E2A;
    font-size: 1.1rem;
}

h2 {
    color: #402E2A;
    font-weight: 600;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #BD632F, #7FB285);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .navbar-nav {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
        text-align: center;
        border-radius: 15px;
        padding: 1rem !important;
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(189, 99, 47, 0.1);
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(189, 99, 47, 0.1);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(189, 99, 47, 0.2);
    }
    
    .navbar-nav .nav-link.active {
        background: linear-gradient(135deg, rgba(189, 99, 47, 0.15), rgba(189, 99, 47, 0.05));
        border: 1px solid rgba(189, 99, 47, 0.3);
    }
    
    .navbar-nav .nav-link.active::after {
        display: none;
    }
    
    .main-content {
        padding-top: 70px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .menu-card {
        margin-bottom: 1rem;
    }
    
    .menu-card .card-body {
        padding: 1.5rem 1rem;
    }
    
    .menu-icon {
        height: 60px;
    }
    
    .menu-image {
        max-height: 60px;
    }
    
    .product-image img {
        height: 200px;
    }
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(189, 99, 47, 0.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(189, 99, 47, 0.2);
    background: rgba(189, 99, 47, 0.1);
}

.navbar-toggler:hover {
    background: rgba(189, 99, 47, 0.1);
    transform: scale(1.05);
}

.navbar-toggler-icon {
    transition: all 0.3s ease;
    /* Icône hamburger (fermé) */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28189, 99, 47, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    /* Icône croix (ouvert) */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28189, 99, 47, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6L24 24M6 24L24 6'/%3e%3c/svg%3e") !important;
}

/* Styles pour le carrousel */
.hero-carousel {
    position: relative;
    overflow: visible;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-carousel .carousel {
    border-radius: 15px;
}

.hero-carousel .carousel-item {
    height: 400px;
    overflow: hidden;
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.hero-carousel .carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 15px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: left;
}

.hero-carousel .carousel-caption h5 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.hero-carousel .carousel-caption p {
    font-size: 1rem;
    color: #f8f9fa;
    margin-bottom: 0;
}

.hero-carousel .carousel-indicators {
    bottom: 10px;
}

.hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 5px;
}

.hero-carousel .carousel-indicators button.active {
    background-color: #fff;
    border-color: #fff;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Boîte de texte flottante */
.floating-text-box {
    position: absolute;
    bottom: -250px;
    right: -150px;
    width: 350px;
    height: auto;
    background: #FFEECF;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(189, 99, 47, 0.1);
    z-index: 10;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.floating-text-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.floating-text-box h3 {
    color: #402E2A;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
}

.floating-text-box h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #BD632F, #7FB285);
    border-radius: 2px;
}

.floating-text-box p {
    color: #402E2A;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.read-more-link {
    color: #BD632F;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.read-more-link:hover {
    color: #7FB285;
    transform: translateX(5px);
}

.read-more-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more-link:hover i {
    transform: translateX(3px);
}

/* Responsive pour le carrousel */
/* Footer */
.footer {
    background: linear-gradient(135deg, #402E2A 0%, #BD632F 100%);
    color: white;
    padding: 40px 0 20px;
    margin-top: 0;
}

.footer h5 {
    color: #FFEECF;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #7FB285, #FFEECF);
    border-radius: 2px;
}

.footer p, .footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer a {
    color: #FFEECF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #7FB285;
    transform: translateX(5px);
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: #7FB285;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(127, 178, 133, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Styles pour le body et contenu principal */
body {
    background: linear-gradient(135deg, #FFEECF 0%, #FFFFFF 100%);
    min-height: 100vh;
}

.main-content {
    background: transparent;
    min-height: calc(100vh - 200px);
    padding: 80px 0 0;
}

.main-content h1 {
    color: #402E2A;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.main-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #BD632F, #7FB285);
    border-radius: 2px;
}

.main-content h3 {
    color: #402E2A;
    font-weight: 600;
    margin-bottom: 15px;
}

.main-content .btn-primary {
    background: linear-gradient(135deg, #BD632F, #7FB285);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.main-content .btn-primary:hover {
    background: linear-gradient(135deg, #7FB285, #BD632F);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(189, 99, 47, 0.3);
}

.main-content .form-control {
    border: 2px solid rgba(189, 99, 47, 0.1);
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.main-content .form-control:focus {
    border-color: #BD632F;
    box-shadow: 0 0 0 3px rgba(189, 99, 47, 0.1);
}

.main-content .form-label {
    color: #402E2A;
    font-weight: 600;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .hero-carousel .carousel-item {
        height: 300px;
    }
    
    .hero-carousel .carousel-caption {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 10px;
    }
    
    .hero-carousel .carousel-caption h5 {
        font-size: 1.2rem;
    }
    
    .hero-carousel .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }
    
    .floating-text-box {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 100%;
        margin-top: 20px;
        transform: none;
        border-radius: 15px;
        width: 100% !important;
    }
    
    .floating-text-box:hover {
        transform: none;
    }
    
    .main-content {
        padding: 70px 0 0;
    }
    
    .footer {
        margin-top: 0;
        padding: 30px 0 15px;
    }
}
