/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5e1c0; /* Couleur de secours si l'image ne charge pas */
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/hero-bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    font-weight: 400; /* Poids de base légèrement plus élevé */
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2c3e50;
}

a {
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

a:hover {
    color: #d35400;
}

.container {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
}

.section-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #c13100;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #c13100;
    color: white;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #8f2400;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Header et Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: background 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Effet au scroll */
header.scrolled {
    background: rgba(245, 225, 192, 0.98);
    box-shadow: 0 2px 20px rgba(193, 49, 0, 0.1);
}

/* Style du logo et de la navigation */
.logo-container h1 {
    color: #c13100;
    font-size: 1.8rem;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.logo-container .tagline {
    color: #856404;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #c13100;
}

/* Style spécial pour le bouton de réservation */
.btn-reservation {
    background: #c13100;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease !important;
}

.btn-reservation:hover {
    background: #a12800;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 49, 0, 0.2);
}

/* Section Hero */
.hero {
    position: relative;
    height: calc(100vh - 40px);
    margin-top: 120px;
    background-image: url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
    border: 8px solid white;
    border-radius: 24px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Ombre plus prononcée */
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 500; /* Plus en gras */
}

/* Assombrir uniquement l'image de fond du hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Filtre sombre sur l'image */
    z-index: 1;
}

/* Section Présentation */
.two-columns {
    display: flex;
    gap: 3rem;
}

.column {
    flex: 1;
}

.column p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500; /* Plus en gras */
}

/* Section Menu */
.menu-section {
    background-color: #fff9f0;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-category h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #c13100;
}

.menu-item {
    background-color: white;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(193, 49, 0, 0.1);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.menu-item h4 {
    font-size: 1.3rem;
    font-weight: 700; /* Déjà en gras */
}

.price {
    font-weight: 700;
    color: #c13100;
    font-size: 1.2rem;
}

.menu-item p {
    color: #666;
    font-style: italic;
    font-weight: 500; /* Plus en gras */
}

.menu-footer {
    text-align: center;
}

.menu-footer p {
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Section Ambiance */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 250px;
    width: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem;
    text-align: center;
}

.ambiance-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ambiance-description p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Section Réservation */
.reservation-container {
    text-align: center;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.reservation-info {
    max-width: 700px;
    margin: 0 auto;
}

.reservation-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 500; /* Plus en gras */
}

.contact-direct {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9f5f0;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.phone-reservation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.phone-reservation i {
    font-size: 2.5rem;
    color: #c13100;
    animation: pulse 1.5s infinite;
}

.phone-reservation span {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
}

.reservation-hours {
    font-style: italic;
    color: #666;
}

.reservation-details {
    margin-top: 2rem;
    text-align: left;
}

.reservation-details h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #2c3e50;
}

.reservation-details ul {
    list-style-type: none;
}

.reservation-details li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.reservation-details li:before {
    content: "•";
    color: #c13100;
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .phone-reservation {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .phone-reservation i, 
    .phone-reservation span {
        font-size: 2rem;
    }
}

/* Section Contact */
.contact-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 450px;
    margin-bottom: 2rem;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info {
    padding: 2rem;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #c13100;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500; /* Plus en gras */
}

.contact-info i {
    color: #c13100;
    width: 20px;
    text-align: center;
}

.hours {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.hours h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #c13100;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.social-link i {
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .contact-container {
        flex-direction: row;
        gap: 2rem;
    }
    
    .map {
        flex: 1.5;
        margin-bottom: 0;
    }
    
    .contact-info {
        flex: 1;
    }
}

/* Footer */
footer {
    background-color: #2a2520;
    color: white;
    padding: 4rem 2rem 1rem;
    margin-top: 4rem;
    padding-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #bdc3c7;
    font-style: italic;
}

.footer-links h4, .footer-contact h4, .footer-newsletter h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #bdc3c7;
}

.footer-links ul li a:hover {
    color: #d35400;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #bdc3c7;
}

.footer-bottom a:hover {
    color: #d35400;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo-container {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0.5rem;
    }
    
    .hero {
        height: calc(100vh - 20px);
        margin-top: 100px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
        border-width: 5px;
    }
    
    .hero-content {
        padding: 1.5rem;
        max-width: 90%;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .two-columns {
        flex-direction: column;
    }
    
    .reservation-container {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .menu-categories {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-content h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Animations et effets */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-content {
    animation: fadeIn 0.8s ease-out;
}

/* Styles pour les images de fond temporaires */
.gallery-item img {
    background-color: #e0e0e0;
}

/* Style pour le menu mobile */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #d35400;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
    
    .btn-reservation {
        display: block;
        margin-top: 0.5rem;
    }
}

/* Améliorations visuelles */
.menu-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem;
    border-radius: 4px;
    background-color: #fff;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(193, 49, 0, 0.1);
}

.social-link {
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.social-link:hover::before {
    transform: translateX(0);
}

/* Style pour les formulaires */
input, select, textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:hover, select:hover, textarea:hover {
    border-color: #d35400;
}

button[type="submit"] {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

button[type="submit"]:hover::before {
    left: 100%;
}

/* Styles pour les sections spéciales */
.special-offer {
    background-color: #fff8e1;
    border-left: 4px solid #d35400;
    padding: 1rem;
    margin: 2rem 0;
    border-radius: 0 4px 4px 0;
}

.special-offer h3 {
    color: #d35400;
    margin-bottom: 0.5rem;
}

/* Styles pour les témoignages */
.testimonials {
    margin-top: 3rem;
}

.testimonial-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 3rem;
    color: #f0f0f0;
    position: absolute;
    top: -1rem;
    left: -1rem;
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-author-info h4 {
    margin-bottom: 0.2rem;
}

.testimonial-author-info p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Styles pour les badges et labels */
.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background-color: #d35400;
    color: white;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.badge-new {
    background-color: #27ae60;
}

.badge-special {
    background-color: #8e44ad;
}

/* Styles pour les tooltips */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: white;
    text-align: center;
    border-radius: 4px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Styles pour les notifications */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: white;
    border-left: 4px solid #d35400;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-close {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    font-size: 1rem;
}

/* Styles pour l'accessibilité */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Styles pour l'impression */
@media print {
    header, footer, .reservation-form, .social-links, .newsletter-form {
        display: none;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    .container {
        padding: 1rem;
    }
    
    .menu-item {
        page-break-inside: avoid;
    }
}

/* Styles pour le carrousel */
.carousel {
    width: 90%;
    margin: 0 auto 3rem;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    text-align: center;
}

.carousel-controls {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.carousel-control {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-control:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-indicators {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

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

.carousel-indicator.active {
    background-color: white;
}

@media (max-width: 768px) {
    .carousel {
        height: 300px;
        width: 100%;
    }
}

/* Suppression des motifs précédents */
body::before {
    display: none;
}

/* Ajout du motif de parquet */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            90deg,
            rgba(139, 69, 19, 0.1),
            rgba(139, 69, 19, 0.1) 5px,
            rgba(160, 82, 45, 0.15) 5px,
            rgba(160, 82, 45, 0.15) 80px,
            rgba(139, 69, 19, 0.1) 80px,
            rgba(139, 69, 19, 0.1) 160px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 20px,
            rgba(0, 0, 0, 0.05) 20px,
            rgba(0, 0, 0, 0.05) 21px
        );
    z-index: -1;
    pointer-events: none;
}

/* Animations pour la page d'accueil */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

/* Animation du titre et sous-titre du hero */
.hero-content h2 {
    animation: fadeInUp 1.2s ease-out forwards;
}

.hero-content p {
    animation: fadeInUp 1.2s ease-out 0.3s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-content .btn {
    animation: fadeInUp 1.2s ease-out 0.6s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Animation subtile pour le logo */
.logo-container h1 {
    position: relative;
    overflow: hidden;
}

.logo-container h1::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Animation pour les éléments du menu */
.menu-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(193, 49, 0, 0.1);
}

/* Animation pour le bouton de réservation */
.btn-reservation:hover {
    animation: pulse 1s infinite;
}

/* Animation pour les sections au défilement */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Animation pour les colonnes de la section histoire */
.column:nth-child(1) {
    animation: fadeInRight 1s ease-out 0.3s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.column:nth-child(2) {
    animation: fadeInLeft 1s ease-out 0.6s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Animation pour le carrousel */
.carousel {
    animation: fadeInUp 1s ease-out forwards;
}

/* Animation pour les indicateurs du carrousel */
.carousel-indicator {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.carousel-indicator:hover {
    transform: scale(1.2);
}

/* Animation pour les contrôles du carrousel */
.carousel-control {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.carousel-control:hover {
    transform: scale(1.1);
}

/* Styles pour les boutons de sélection du nombre de personnes */
.guests-selector {
    margin-top: 0.5rem;
}

.guests-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.guest-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background-color: white;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guest-btn:hover {
    border-color: #c13100;
    color: #c13100;
}

.guest-btn.active {
    background-color: #c13100;
    color: white;
    border-color: #c13100;
}

.guest-btn-more {
    font-size: 1.2rem;
}

.guests-custom {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

.guests-custom input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.guest-btn-back {
    padding: 0.8rem 1rem;
    background-color: #e0e0e0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.guest-btn-back:hover {
    background-color: #d0d0d0;
}

@media (max-width: 768px) {
    .guests-buttons {
        justify-content: center;
    }
    
    .guest-btn {
        width: 35px;
        height: 35px;
    }
}

/* Texte plus en gras pour les paragraphes */
p {
    font-weight: 500; /* Plus en gras que la normale */
    margin-bottom: 1.2rem;
}

/* Texte plus en gras pour les titres */
h1, h2, h3, h4 {
    font-weight: 700; /* Déjà en gras, mais on peut le spécifier explicitement */
}

/* Texte plus en gras pour les éléments de navigation */
nav ul li a {
    font-weight: 600; /* Déjà en semi-gras */
}

/* Texte plus en gras pour les boutons */
.btn {
    font-weight: 700; /* Plus en gras */
}

/* Texte plus en gras pour le contenu du hero */
.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 500; /* Plus en gras */
}

/* Texte plus en gras pour les colonnes de présentation */
.column p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500; /* Plus en gras */
}

/* Texte plus en gras pour les éléments du menu */
.menu-item p {
    color: #666;
    font-weight: 500; /* Plus en gras */
}

.menu-item-header h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700; /* Déjà en gras */
}

/* Texte plus en gras pour les prix */
.price {
    color: #c13100;
    font-weight: 700; /* Plus en gras */
    font-size: 1.2rem;
}

/* Texte plus en gras pour les informations de contact */
.contact-info p {
    margin-bottom: 0.8rem;
    font-weight: 500; /* Plus en gras */
}

/* Texte plus en gras pour les horaires */
.hours p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500; /* Plus en gras */
}

/* Texte plus en gras pour le footer */
.footer-content p {
    margin-bottom: 0.8rem;
    font-weight: 500; /* Plus en gras */
}

/* Styles pour le bouton de zoom */
.zoom-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.zoom-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Styles pour la modal de zoom */
.zoom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.zoom-modal.active {
    display: flex;
}

.zoom-modal img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.zoom-modal .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.zoom-modal .close-btn:hover {
    color: #c13100;
}

/* Styles pour les boutons de navigation de la modal */
.modal-prev-slide,
.modal-next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 1001;
}

.modal-prev-slide {
    left: 20px;
}

.modal-next-slide {
    right: 20px;
}

.modal-prev-slide:hover,
.modal-next-slide:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Ajuster la taille des icônes */
.modal-prev-slide i,
.modal-next-slide i {
    font-size: 1.5rem;
}

/* Ajuster pour les écrans mobiles */
@media (max-width: 768px) {
    .modal-prev-slide,
    .modal-next-slide {
        width: 40px;
        height: 40px;
    }
    
    .modal-prev-slide {
        left: 10px;
    }
    
    .modal-next-slide {
        right: 10px;
    }
}

/* Ajuster la structure de la modal */
.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.modal-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 1.1rem;
}

/* Ajuster la position des boutons de navigation par rapport au nouveau conteneur */
.modal-prev-slide {
    left: 5%;
}

.modal-next-slide {
    right: 5%;
}

/* Supprimer les styles liés aux rôles */
.role-indicator,
.role-indicator.admin-mode,
.role-indicator.admin-mode:hover,
.role-indicator i,
.admin-only {
    display: none;
}
