/* ============================================
   Brasserie de l'Armurier - Custom Stylesheet
   Color Palette:
   - Primary Dark Blue: #1a2640
   - Secondary Dark: #0f1829
   - Gold/Cream: #c9a961
   - Light Gold: #e8d5a3
   - Text Light: #f5f5f5
   ============================================ */

:root {
    --primary-dark: #1a2640;
    --secondary-dark: #0f1829;
    --gold: #c9a961;
    --gold-light: #e8d5a3;
    --gold-hover: #d4b96f;
    --text-light: #f5f5f5;
    --text-dark: #333;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray: #6c757d;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

.bg-primary-dark {
    background-color: var(--primary-dark);
}

.bg-secondary-dark {
    background-color: var(--secondary-dark);
}

.text-gold {
    color: var(--gold);
}

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

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.section-title.light h2 {
    color: var(--text-light);
}

.section-title p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

.section-title.light p {
    color: var(--gold-light);
}

/* Custom Buttons */
.btn-gold {
    background-color: var(--gold);
    color: var(--primary-dark);
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
}

.btn-gold-outline {
    background-color: transparent;
    color: var(--gold);
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.btn-gold-outline:hover {
    background-color: var(--gold);
    color: var(--primary-dark);
}

/* Navbar */
.navbar {
    background-color: var(--primary-dark);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    padding: 10px 0;
}

.navbar-brand img {
    height: 60px;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 10px 18px !important;
    margin: 0 2px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201, 169, 97, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(15, 24, 41, 0.75), rgba(15, 24, 41, 0.8)), url('../img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.hero-content {
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content h1 span {
    color: var(--gold);
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--gold-light);
}

.hero-buttons .btn {
    margin: 10px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--gold);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

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

/* About Section */
.about-section {
    background-color: var(--gray-light);
}

.about-content h3 {
    color: var(--gold);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-content h2 {
    color: var(--primary-dark);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    width: 50%;
    margin-bottom: 15px;
}

.about-feature i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-right: 15px;
}

.about-feature span {
    font-weight: 500;
    color: var(--primary-dark);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-image-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 25px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.about-image-badge h3 {
    font-size: 2.5rem;
    margin-bottom: 0;
}

.about-image-badge p {
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Menu Section */
.menu-section {
    background: var(--primary-dark);
    color: var(--text-light);
}

/* === Navigation catégories === */
.carte-nav {
    position: sticky;
    top: 70px;
    z-index: 10;
    background: var(--primary-dark);
    padding: 15px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.carte-nav-inner {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
    flex-wrap: wrap;
}

.carte-nav-inner::-webkit-scrollbar { display: none; }

.carte-nav-link {
    white-space: nowrap;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carte-nav-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.carte-nav-link.active {
    background: var(--gold);
    color: var(--primary-dark);
    border-color: var(--gold);
}

/* === Sections catégories === */
.carte-category {
    margin-bottom: 50px;
    scroll-margin-top: 140px;
}

.carte-category-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
}

.carte-category-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.carte-category-header h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.carte-category-header h3 i {
    font-size: 1.4rem;
    opacity: 0.8;
}

.carte-category-desc {
    color: rgba(255,255,255,0.5);
    font-style: italic;
    font-size: 0.9rem;
    margin: 0;
}

/* === Items de menu === */
.menu-item {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 169, 97, 0.08);
}

.menu-item:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(201, 169, 97, 0.25);
    transform: translateY(-2px);
}

.menu-item-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.menu-item h4 {
    color: #fff;
    font-size: 1.05rem;
    margin: 0;
    font-weight: 600;
    flex-shrink: 1;
    min-width: 0;
}

.menu-item-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(201, 169, 97, 0.3);
    min-width: 20px;
    margin-bottom: 4px;
}

.menu-item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.menu-item p {
    color: rgba(255,255,255,0.55);
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.4;
}

/* Badges régimes */
.diet-badge {
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    margin-left: 5px;
    vertical-align: middle;
}

.diet-badge.veg { background: #28a745; color: white; }
.diet-badge.vegan { background: #17a2b8; color: white; }
.diet-badge.sg { background: #ffc107; color: #333; }
.diet-badge.ar { background: #dc3545; color: white; }

/* Légende */
.carte-legend {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.carte-legend span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .carte-nav-inner {
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
    
    .carte-nav-link {
        padding: 6px 14px;
        font-size: 0.82rem;
    }
    
    .carte-category-header h3 {
        font-size: 1.4rem;
    }
    
    .menu-item {
        padding: 14px 16px;
    }
    
    .menu-item-header {
        flex-wrap: wrap;
    }
    
    .menu-item h4 {
        font-size: 0.95rem;
        flex-shrink: 1;
        min-width: 0;
        word-break: break-word;
    }
    
    .menu-item-dots {
        display: none;
    }
    
    .menu-item-price {
        font-size: 1rem;
        margin-left: auto;
    }
    
    .carte-legend {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* Gallery Section */
.gallery-section {
    background: var(--gray-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

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

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

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

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

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

.gallery-overlay i {
    color: var(--gold);
    font-size: 2.5rem;
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(rgba(15, 24, 41, 0.95), rgba(15, 24, 41, 0.95)), url('../img/testimonial-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--gold);
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--gold);
}

.testimonial-author-info h5 {
    color: var(--gold);
    margin-bottom: 0;
    font-size: 1.1rem;
}

.testimonial-author-info span {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Pro Section */
.pro-section {
    background: var(--gray-light);
}

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

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

.pro-card-icon {
    background: var(--primary-dark);
    color: var(--gold);
    padding: 40px;
    text-align: center;
}

.pro-card-icon i {
    font-size: 3.5rem;
}

.pro-card-content {
    padding: 30px;
}

.pro-card-content h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.pro-card-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

/* Reservation Form */
.reservation-section {
    background: var(--primary-dark);
}

.reservation-form {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.reservation-form .form-label {
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 8px;
}

.reservation-form .form-control,
.reservation-form .form-select {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: var(--text-light);
    padding: 15px;
    border-radius: 10px;
}

.reservation-form .form-control:focus,
.reservation-form .form-select:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.2);
    color: var(--text-light);
}

.reservation-form .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

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

.reservation-info h3 {
    color: var(--gold);
    margin-bottom: 20px;
}

.reservation-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.reservation-info-item i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-right: 20px;
    margin-top: 5px;
}

.reservation-info-item h5 {
    color: var(--gold-light);
    margin-bottom: 5px;
}

.reservation-info-item p {
    margin: 0;
    color: rgba(255,255,255,0.7);
}

/* News/Articles Section */
.news-section {
    background: var(--gray-light);
}

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

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

.news-card-image {
    height: 220px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.1);
}

.news-card-content {
    padding: 25px;
}

.news-card-date {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.news-card-date i {
    margin-right: 8px;
}

.news-card-content h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.news-card-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Recruitment Section */
.recruitment-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.job-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.job-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.job-card h4 {
    color: var(--gold);
    margin-bottom: 10px;
}

.job-card .job-type {
    display: inline-block;
    background: rgba(201, 169, 97, 0.2);
    color: var(--gold-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

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

.job-card ul {
    color: rgba(255,255,255,0.7);
    padding-left: 20px;
    margin-bottom: 20px;
}

.job-card ul li {
    margin-bottom: 8px;
}

/* Contact Info */
.contact-section {
    background: var(--gray-light);
}

.contact-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.contact-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-card h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--gray);
    margin: 0;
}

.contact-card a {
    color: var(--gold);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--primary-dark);
}

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
}

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

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--primary-dark);
}

.footer-title {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

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

.footer-hours li {
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.footer-hours li span:last-child {
    color: var(--gold);
}

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

.footer-contact-item i {
    color: var(--gold);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-contact-item p {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
    margin-top: 50px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.6);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(15, 24, 41, 0.9), rgba(15, 24, 41, 0.9)), url('../img/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0 80px;
    text-align: center;
    color: var(--text-light);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.breadcrumb {
    justify-content: center;
    background: transparent;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--gold);
}

.breadcrumb-item.active {
    color: rgba(255,255,255,0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* Happy Hour Banner */
.happy-hour-banner {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--primary-dark);
    padding: 15px 0;
    text-align: center;
}

.happy-hour-banner h5 {
    margin: 0;
    font-weight: 600;
}

.happy-hour-banner span {
    font-weight: 700;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    color: var(--gold);
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--secondary-dark);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-image-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
        display: inline-block;
    }
}

/* Menu desktop sur écrans intermédiaires */
@media (min-width: 992px) and (max-width: 1200px) {
    .navbar-nav .nav-link {
        padding: 10px 10px !important;
        font-size: 0.85rem;
    }
    
    .navbar-brand img {
        height: 45px;
    }
}

@media (min-width: 1201px) and (max-width: 1400px) {
    .navbar-nav .nav-link {
        padding: 10px 12px !important;
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-feature {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .reservation-form {
        padding: 30px 20px;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.5s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo {
    width: 120px;
    height: auto;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(201, 169, 97, 0.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-dark);
    color: var(--text-light);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner p {
    margin: 0 0 15px 0;
}

.cookie-banner .btn {
    margin-right: 10px;
}

/* Map Container */
.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

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

/* Menu PDF Button */
.menu-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.menu-pdf-btn:hover {
    background: var(--gold-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.menu-pdf-btn i {
    font-size: 1.5rem;
}

/* ========================================
   Menu du Jour Section (Accueil)
   ======================================== */
.menu-du-jour-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.menu-du-jour-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.menu-du-jour-item {
    padding: 20px 0;
    border-bottom: 1px dashed #dee2e6;
}

.menu-du-jour-item:last-of-type {
    border-bottom: none;
}

.menu-du-jour-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.menu-du-jour-badge.entree {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.menu-du-jour-badge.plat {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: white;
}

.menu-du-jour-badge.dessert {
    background: linear-gradient(135deg, #fd7e14 0%, #ffc107 100%);
    color: white;
}

.menu-du-jour-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.menu-du-jour-item p {
    color: #6c757d;
    margin: 0;
    font-style: italic;
}

.menu-du-jour-formules {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding-top: 25px;
    margin-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.menu-du-jour-formules .formule {
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    color: var(--primary-dark);
    border: 1px solid #dee2e6;
}

.menu-du-jour-formules .formule.highlight {
    background: linear-gradient(135deg, var(--gold) 0%, #c9a227 100%);
    color: var(--primary-dark);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-du-jour-card {
        padding: 25px;
    }
    
    .menu-du-jour-item h4 {
        font-size: 1.2rem;
    }
    
    .menu-du-jour-formules {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-du-jour-formules .formule {
        width: 100%;
        text-align: center;
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

/* Tablette : les 2 colonnes menus sont étroites */
@media (min-width: 769px) and (max-width: 1200px) {
    .menu-du-jour-formules {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-du-jour-formules .formule {
        width: 100%;
        text-align: center;
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    
    .menu-du-jour-item h4 {
        font-size: 1.1rem;
    }
}

/* ========================================
   Corrections - Services & CTA
   ======================================== */

/* Section Services */
.services-section {
    background: var(--primary-dark);
    color: var(--text-light);
}

/* Section Services - Titre visible */
.services-section .section-title.light h2,
.services-section .section-title.light p {
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.services-section .section-title.light h2::after {
    background: var(--gold);
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.05));
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.service-card h4 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* CTA Section - Padding en dessous */
.cta-section {
    padding: 80px 0 100px;
    margin-bottom: 0;
}

/* Map section - pas de gap */
section.py-0 {
    padding: 0 !important;
    margin-top: 0;
}

.map-container {
    margin-top: 0;
}
