:root {
    --color-beige: #E8D7C6;
    --color-marron: #8B6F47;
    --color-marron-dark: #6B5438;
    --color-beige-light: #F5EFE7;
    --color-gold: #D4A574;
    --color-text: #333;
    --color-text-light: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background-color: #fff;
}

header {
    background-color: var(--color-beige-light) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.navbar-nav .nav-link {
    color: var(--color-text) !important;
    margin-left: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--color-marron) !important;
}

.nav-desktop {
    display: block;
}

.btn-panier {
    background-color: var(--color-marron) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-panier:hover {
    background-color: var(--color-marron-dark) !important;
}

.hero {
    height: 600px;
    background: linear-gradient(135deg, var(--color-marron) 0%, var(--color-gold) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-products {
    height: 400px;
    background: linear-gradient(135deg, var(--color-marron) 0%, var(--color-gold) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" fill-opacity="1" d="M0,96L60,112C120,128,240,160,360,160C480,160,600,128,720,128C840,128,960,160,1080,170.7C1200,181,1320,171,1380,165.3L1440,160L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    z-index: 1;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.hero .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-primary {
    background-color: var(--color-beige) !important;
    border: none !important;
    color: var(--color-marron) !important;
    font-weight: 600;
    padding: 0.75rem 2.5rem !important;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.section-produits {
    background-color: #fff;
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-marron);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-marron), var(--color-gold));
    border-radius: 2px;
}

.btn-filter {
    background: none;
    border: 2px solid var(--color-marron);
    color: var(--color-marron);
    padding: 0.5rem 1.5rem;
    margin: 0.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filter:hover,
.btn-filter.active {
    background-color: var(--color-marron);
    color: white;
}

.card-produit {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.card-produit:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
}

.img-container {
    position: relative;
    overflow: hidden;
    height: 300px;
    background-color: var(--color-beige-light);
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-produit:hover .img-container img {
    transform: scale(1.05);
}

.btn-favori {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.btn-favori:hover {
    background-color: white;
    transform: scale(1.1);
}

.info-produit {
    padding: 20px;
}

.info-produit h5 {
    color: var(--color-marron);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.prix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.produit {
    animation: fadeInUp 0.6s ease-out;
}

.produit.hidden {
    display: none;
}

#about {
    background-color: var(--color-beige-light);
    padding: 80px 0;
}

#about .section-title {
    margin-bottom: 2rem;
}

#about p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

#about ul li {
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 500;
}

#about ul li::before {
    color: var(--color-marron);
    margin-right: 0.5rem;
}

.hours-section {
    background-color: #fff;
    padding: 80px 0;
}

.hours-card {
    background-color: var(--color-beige-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.05);
}

.status-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #999;
    animation: pulse 2s infinite;
}

.status-dot.open {
    background-color: #28a745;
}

.status-dot.closed {
    background-color: #dc3545;
}

.status-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-marron);
}

.status-text.open {
    color: #28a745;
}

.status-text.closed {
    color: #dc3545;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}

.hours-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease;
}

.hours-table tbody tr:hover {
    background-color: rgba(139, 111, 71, 0.05);
}

.hours-table tbody tr.sunday {
    background-color: rgba(220, 53, 69, 0.05);
}

.hours-table tbody tr.sunday .day {
    color: #dc3545;
}

.hours-table tbody tr.sunday .time {
    color: #dc3545;
    font-weight: 700;
}

.hours-table td {
    padding: 15px 0;
}

.hours-table .day {
    font-weight: 700;
    color: var(--color-marron);
    width: 40%;
    padding-right: 20px;
}

.hours-table .time {
    color: var(--color-text);
    text-align: right;
    padding-left: 20px;
}

.location-info {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.8;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, var(--color-marron), var(--color-marron-dark));
    color: white;
    padding: 80px 0;
}

.newsletter-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-section .form-control {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
}

.newsletter-section .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
    border-color: var(--color-gold);
}

.newsletter-section .btn-primary {
    background-color: var(--color-gold) !important;
    color: var(--color-marron) !important;
    white-space: nowrap;
    padding: 0.75rem 2rem !important;
}

.footer {
    background-color: #2c2c2c;
    color: #f5f5f5;
    padding: 50px 0;
}

.footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer p {
    color: #e0e0e0;
}

.footer .text-muted {
    color: #e0e0e0 !important;
}

.footer a {
    color: var(--color-gold);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 400px;
    }

    .hero-products {
        height: 300px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .lead {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding-top: 0.5rem;
    }

    .nav-desktop {
        display: none;
    }

    .logo {
        height: 45px;
    }

    .placeholder-card {
        padding: 40px 20px;
    }

    .hours-card table td:last-child {
        text-align: left;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    #about .row {
        flex-direction: column-reverse;
    }

    #about img {
        margin-top: 2rem;
    }
}

.modal-header {
    background-color: var(--color-beige-light);
    border-bottom: 2px solid var(--color-marron);
}

.modal-title {
    color: var(--color-marron);
    font-weight: 700;
}

.carousel-control-prev,
.carousel-control-next {
    background-color: rgba(139, 111, 71, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(139, 111, 71, 0.8);
}

.modal-body code {
    background-color: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    color: var(--color-marron);
    font-weight: 600;
}

@media (max-width: 768px) {
    .modal-dialog {
        margin: 0 !important;
    }

    .modal-body .row {
        flex-direction: column;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 30px;
        height: 30px;
    }
}
@media (max-width: 480px) {
    .logo {
        height: 40px;
    }

    .hero {
        height: 300px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .lead {
        font-size: 0.9rem;
    }

    .btn-primary {
        font-size: 0.9rem;
        padding: 0.5rem 1.5rem !important;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-title::after {
        width: 40px;
    }

    .hours-card {
        padding: 20px;
    }

    .hours-table .day {
        width: 50%;
        font-size: 0.9rem;
    }

    .hours-table .time {
        font-size: 0.85rem;
    }

    .status-indicator {
        flex-direction: column;
        gap: 5px;
        padding: 10px;
        margin-bottom: 20px;
    }

    .status-text {
        font-size: 0.95rem;
    }

    .footer {
        padding: 30px 0;
    }

    .footer h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .footer p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .navbar-brand {
        padding-right: 0;
    }

    .navbar-toggler {
        padding: 0.25rem 0.5rem;
    }

    .navbar-toggler-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products-section {
    background-color: #fff;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-card {
    background-color: var(--color-beige-light);
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.placeholder-text {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.text-marron {
    color: var(--color-marron);
}

.bg-marron {
    background-color: var(--color-marron);
}

.border-marron {
    border-color: var(--color-marron);
}
