/* Base Styles */
:root {
    --primary-color: #D2691E;
    --secondary-color: #8B4513;
    --accent-color: #FFA500;
    --text-color: #333;
    --light-text: #fff;
    --light-bg: #f9f5f0;
    --dark-bg: #2c2418;
    --border-color: #e0d5c8;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--dark-bg);
    background-image: url('photo/mur1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 0px;
    position: relative;
    filter: brightness(0.95);
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--light-text);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

p, span, div {
    color: var(--light-text);
}

section {
    margin: 0 !important;
    padding-top: 40px; /* Réduit de 60px à 40px */
    padding-bottom: 60px;
    border: none !important;
    box-shadow: none !important;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section-padding {
    padding: 80px 0;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(139, 69, 19, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(44, 36, 24, 0.98);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

main {
    padding-top: 0px; /* Réduit de 80px à 0px car la section hero est maintenant en dehors du main */
}

.logo img {
    height: 60px;
    transition: all 0.3s ease;
}

header.scrolled .logo img {
    height: 50px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-logo img {
    height: 50px;
    width: auto;
}

.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.navbar-menu li a {
    color: var(--light-text);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.navbar-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.navbar-menu li a:hover::after {
    width: 100%;
}

.navbar-toggle {
    display: none;
    color: var(--light-text);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 80vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('photo/mur.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-align: center;
    position: relative;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
    margin-bottom: 0px; /* Réduit de 40px à 0px pour rapprocher les sections */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    position: relative;
    z-index: 1;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--light-text);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.hero .location {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-size: 14px;
    border: none;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.btn-secondary:hover {
    background-color: var(--light-text);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.text-left {
    text-align: left;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--light-text);
    position: relative;
}

.section-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--light-text);
    opacity: 0.9;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 25px;
    width: 120px;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--accent-color);
}

.divider-icon {
    margin: 0 10px;
    color: var(--accent-color);
    font-size: 18px;
}

.divider-left {
    justify-content: flex-start;
    margin-left: 0;
}

/* Menu Section */
.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.menu-category {
    padding: 8px 20px;
    background-color: transparent;
    color: var(--light-text);
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.menu-category:hover, .menu-category.active {
    background-color: var(--accent-color);
    color: var(--dark-bg);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.menu-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.menu-item-image {
    height: 200px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-item-info {
    padding: 20px;
}

.menu-item-info h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--light-text);
}

.menu-item-desc {
    color: var(--light-text);
    opacity: 0.8;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.menu-item-price {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.1rem;
    display: block;
}

.menu-footer {
    text-align: center;
    margin-top: 30px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(550px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 550px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    text-align: center;
    padding: 0 10px;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-content h2, 
.about-content p {
    color: var(--light-text);
}

.about-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.feature i {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--light-text);
}

.feature p {
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--light-text);
}

/* Reviews Section */
.reviews-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.review {
    flex: 0 0 350px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review:hover {
    transform: translateY(-10px);
}

.review-rating {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--light-text);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--light-text);
}

.review-author p {
    color: var(--light-text);
    opacity: 0.7;
    font-size: 0.9rem;
}

.reviews-platforms {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: var(--light-text);
    font-size: 0.9rem;
    transition: var(--transition);
}

.platform-link:hover {
    background-color: var(--accent-color);
    color: var(--dark-bg);
}

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

.platform-link span {
    font-weight: 600;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info {
    color: var(--light-text);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-item h4 {
    margin: 0 0 5px 0;
    color: var(--light-text);
}

.contact-item p {
    margin: 0;
    opacity: 0.8;
}

.contact-social {
    margin-top: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.contact-form-container {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    display: grid;
    gap: 15px;
}

.form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--light-text);
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.2);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#back-to-top button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#back-to-top button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-logo h3 {
    margin-bottom: 5px;
    color: var(--light-text);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    color: var(--light-text);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--accent-color);
}

.footer-newsletter p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter form {
    display: flex;
    gap: 10px;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

.footer-newsletter button {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-bottom p {
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: var(--light-text);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* ==========================================================================
   MODAL – Toujours en haut du viewport
   ========================================================================== */
.modal {
    display: none;
    position: fixed;           /* Fixé au viewport */
    inset: 0;                  /* Couvre tout le viewport */
    z-index: 2000;
    background: rgba(0, 0, 0, 0.85);
    overflow-y: auto;          /* Permet le scroll du modal */
}

.modal.active {
    display: block;            /* Simple block, pas flex */
}

.modal-content {
    background: rgb(39, 13, 0);
    border-radius: 16px;
    width: 100%;
    max-width: 920px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    margin: 2rem auto;         /* Centré horizontalement, avec marge en haut */
    position: relative;
}

.modal-header {
    padding: 1.5rem 2.5rem;
    background: linear-gradient(135deg, #b8860b, #d4a017);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.modal-header h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #fff9e6;
}

.modal-body {
    padding: 2.5rem 2rem;
    color: #f5e9d2;
    text-align: center;
}

.full-menu-section {
    margin-bottom: 2.8rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.full-menu-section h3 {
    color: #d4a017;
    font-family: 'Playfair Display', serif;
    border-bottom: 2px solid rgba(212, 160, 23, 0.3);
    padding-bottom: 0.8rem;
    margin-bottom: 1.2rem;
}

.full-menu-list {
    list-style: none;
    padding: 0;
    font-size: 1.08rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 90%;
}

.full-menu-list li {
    margin-bottom: 0.8rem;
    display: flex;                    /* Flexbox pour aligner gauche/droite */
    align-items: baseline;            /* Aligne sur la ligne de base du texte */
    text-align: left;                 /* Texte aligné à gauche */
    gap: 0.5rem;                      /* Petit espace entre les éléments */
}

.dish-name {
    flex: 0 0 auto;                   /* Ne grandit ni ne rétrécit */
    text-align: left;
}

.dish-dots {
    flex: 1 1 auto;                   /* Prend tout l'espace disponible */
    border-bottom: 1px dotted rgba(212, 160, 23, 0.3);  /* Ligne pointillée */
    min-width: 2px;                  /* Largeur minimum */
    margin-bottom: 0.35rem;           /* Aligne avec le texte */
}

.dish-price {
    flex: 0 0 auto;                   /* Ne grandit ni ne rétrécit */
    white-space: nowrap;              /* Prix sur une seule ligne */
    font-weight: 600;
    color: #d4a017;
}

.menu-note {
    text-align: center;
    font-style: italic;
    color: #b0a080;
    margin-top: 2.5rem;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .menu-item, .review {
        flex: 0 0 calc(50% - 15px);
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        flex-direction: column;
        padding: 20px 0;
        gap: 15px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: all 0.4s ease;
    }
    
    .navbar-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .navbar-toggle {
        display: block;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .menu-items, .reviews-slider {
        gap: 20px;
    }
    
    .menu-item, .review {
        flex: 0 0 100%;
    }

    /* CARTES DE MENU - Réduction de taille sur mobile */
    .menu-items {
        grid-template-columns: 1fr;    /* Une seule colonne sur mobile */
        gap: 20px;
    }

    .menu-item {
        max-width: 100%;                /* Prend toute la largeur disponible */
    }

    .menu-item-image {
        height: 160px;                  /* Image plus petite (200px → 160px) */
    }

    .menu-item-info {
        padding: 15px;                  /* Moins de padding (20px → 15px) */
    }

    .menu-item-info h3 {
        font-size: 1.1rem;              /* Titre plus petit (1.25rem → 1.1rem) */
        margin-bottom: 8px;
    }

    .menu-item-desc {
        font-size: 0.85rem;             /* Description plus petite (0.9rem → 0.85rem) */
        margin-bottom: 12px;
    }

    .menu-item-price {
        font-size: 1rem;                /* Prix légèrement plus petit (1.1rem → 1rem) */
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;  /* 2 colonnes sur mobile */
        gap: 15px;                        /* Réduire l'espace entre images */
    }

    .gallery-item {
        height: 200px;                    /* Réduire la hauteur (550px → 200px) */
    }

    .gallery-overlay span {
        font-size: 1rem;                  /* Texte plus petit (1.5rem → 1rem) */
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo, .footer-links, .footer-contact, .footer-newsletter {
        align-items: center;
    }
    
    .footer-links h4::after, .footer-contact h4::after, .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    #back-to-top {
        bottom: 20px;
        right: 20px;
    }
    
    #back-to-top button {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    /* MODAL - Styles spécifiques pour mobile */
    .modal-content {
        width: 95%;
        max-height: 85vh;
        margin: 0.5rem auto;
    }
    
    .modal-header {
        padding: 1rem 1rem;
    }

    .modal-header h2 {
        font-size: 1.3rem;          /* Titre plus petit */
    }

    .modal-close {
        font-size: 1.8rem;          /* Bouton X plus petit */
    }

    .modal-body {
        padding: 1.5rem 1rem;       /* Moins de padding */
    }

    .full-menu-section {
        margin-bottom: 2rem;        /* Moins d'espace entre sections */
    }

    .full-menu-section h3 {
        font-size: 1.3rem;          /* Titres de section plus petits */
        margin-bottom: 0.8rem;
    }

    .full-menu-section h4 {
        font-size: 1rem !important; /* Sous-titres plus petits */
        margin-top: 1rem !important;
        margin-bottom: 0.8rem !important;
    }

    .full-menu-list {
        font-size: 0.85rem;         /* Texte du menu plus petit */
        line-height: 1.5;
        max-width: 100%;
    }

    .full-menu-list li {
        margin-bottom: 0.6rem;      /* Moins d'espace entre items */
        gap: 0.3rem;
    }

    .dish-name {
        font-size: 0.85rem;         /* Nom du plat plus petit */
    }

    .dish-price {
        font-size: 0.85rem;         /* Prix plus petit */
    }

    .menu-note {
        font-size: 0.8rem;          /* Note de bas de page plus petite */
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .divider {
        width: 80px;
    }
    
    .reviews-platforms {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-categories {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .menu-category {
        width: 80%;
    }
    
    .footer-newsletter form {
        flex-direction: column;
    }
}