/* ===============================================
   ENTRE NOUS DIAMANT CLUB PRIVÉ - Main Stylesheet
   =============================================== */

/* Variables CSS */
:root {
    --primary: #c9a227;
    --primary-dark: #a8871d;
    --primary-light: #e8c847;
    --dark: #0a0a14;
    --dark-lighter: #12121f;
    --dark-card: #15152a;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --accent-red: #8b0000;
    --gradient-gold: linear-gradient(135deg, #c9a227 0%, #e8c847 50%, #c9a227 100%);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--text-light);
    line-height: 1.6;
    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;
}

/* Scrollbar personnalisée */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ============ NAVBAR ============ */
.navbar {
    background: rgba(10, 10, 20, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand .brand-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.navbar-brand .logo {
    object-fit: contain;
    border-radius: 6px;
}

.navbar-brand .brand-name {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    max-width: 150px;
}

.navbar-brand .brand-text {
    color: var(--primary);
    font-size: 1.3rem;
}

.navbar-brand span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* Bouton réservation navbar */
.btn-reservation,
.btn-reserve {
    background: var(--gradient-gold);
    color: var(--dark) !important;
    font-weight: 600;
    padding: 0.5rem 1.5rem !important;
    border-radius: 30px;
    border: none;
}

.btn-reservation:hover,
.btn-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.4);
}

/* ============ HERO SECTION ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 5vw 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.9) 0%, rgba(10, 10, 20, 0.7) 100%),
                url('../images/hero-bg.jpg') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--dark) 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
}

/* ============ BUTTONS ============ */
.btn-primary-custom {
    background: var(--gradient-gold);
    color: var(--dark);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
    color: var(--dark);
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--dark);
}

/* ============ SECTIONS ============ */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Subtitle helper for public pages */
.section-subtitle {
    display: block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* ============ CARDS ============ */
.card-custom {
    background: var(--dark-card);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.card-custom:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-custom .card-img-top {
    height: 250px;
    object-fit: cover;
}

.card-custom .card-body {
    padding: 1.5rem;
}

.card-custom .card-title {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.card-custom .card-text {
    color: var(--text-muted);
}

.card-custom .price {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
}

/* ============ SERVICE BOXES ============ */
.service-box {
    text-align: center;
    padding: 2.5rem;
    background: var(--dark-card);
    border-radius: 15px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.service-box:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.service-box .icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--dark);
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-box p {
    color: var(--text-muted);
}

/* ============ MENU SECTION ============ */
.menu-category {
    margin-bottom: 3rem;
}

.menu-category h3 {
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-family: 'Montserrat', sans-serif;
}

.menu-item-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.menu-item-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
}

/* ============ ABOUT SECTION ============ */
.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--primary);
    border-radius: 15px;
    z-index: 1;
}

/* ============ CONTACT SECTION ============ */
.contact-info-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--dark-card);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.contact-info-box .icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.25rem;
}

.contact-info-box h5 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-info-box p {
    margin: 0;
    color: var(--text-muted);
}

/* Form styling */
.form-control-custom {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    background: var(--dark-card);
    border-color: var(--primary);
    color: var(--text-light);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.form-control-custom::placeholder {
    color: var(--text-muted);
}

/* ============ PUBLIC PAGES (HEADER/MENUS/FORMS) ============ */
/* Page header used across public pages */
.page-header {
    position: relative;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(10,10,20,0.9) 0%, rgba(10,10,20,0.7) 100%);
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10,10,20,0.7) 70%);
}

.page-header .breadcrumb {
    justify-content: center;
    --bs-breadcrumb-divider-color: var(--text-muted);
}

.page-header h1 {
    text-align: center;
    font-size: 3rem;
}

/* Public menu item layout */
.menu-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.menu-item-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex: 0 0 auto;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-content {
    flex: 1 1 auto;
}

.menu-item-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
}

.menu-item-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.menu-item-price {
    color: var(--primary);
    font-weight: 700;
}

.menu-item-description {
    color: var(--text-muted);
}

.menu-item-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(201,162,39,0.15);
    color: var(--primary);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Reservation & Contact forms wrapper */
.reservation-form-wrapper,
.contact-form-wrapper {
    background: var(--dark-card);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.info-card {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.25rem;
}

.info-content h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

/* ============ HERO INNER ELEMENTS ============ */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.85) 0%, rgba(10, 10, 20, 0.6) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-subtitle {
    display: block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
    color: var(--primary);
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.hero-slogan {
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--primary);
    font-size: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.hero-scroll a:hover { opacity: 1; }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============ SERVICE CARDS (HomePage) ============ */
.service-card {
    background: var(--dark-card);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card .service-icon {
    width: 75px;
    height: 75px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--dark);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.3s ease;
}

.service-link:hover { gap: 0.75rem; }

/* ============ EXPERIENCE BADGE (About) ============ */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-gold);
    color: var(--dark);
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
    z-index: 2;
}

.experience-badge .number {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.experience-badge .text {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
}

/* ============ DISH CARDS ============ */
.dish-card {
    background: var(--dark-card);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.dish-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dish-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.dish-card:hover .dish-image img { transform: scale(1.05); }

.dish-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.dish-content { padding: 1.5rem; }

.dish-name {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.dish-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.dish-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dish-price {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
}

/* ============ CTA SECTION ============ */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, rgba(10,10,20,0.92) 0%, rgba(10,10,20,0.75) 100%),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10,10,20,0.6) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ============ CONTACT CARDS (HomePage) ============ */
.contact-card {
    background: var(--dark-card);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-card .contact-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--dark);
}

.contact-card h4 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ============ SECTION DESCRIPTION ============ */
.section-description {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0.5rem auto 0;
}

/* ============ FOOTER NEW CLASSES ============ */
.footer-brand h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark-card);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--primary); }

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.admin-link {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.3s;
}

.admin-link:hover { color: var(--primary); }

/* Flash message position for fixed navbar */
.flash-message {
    position: fixed;
    top: 80px;
    right: 1rem;
    z-index: 1050;
    max-width: 400px;
    width: calc(100% - 2rem);
}

/* ============ FOOTER ============ */
footer {
    background: var(--dark-lighter);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
}

footer h5 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer ul li a {
    color: var(--text-muted);
}

footer ul li a:hover {
    color: var(--primary);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--dark-card);
    border-radius: 50%;
    color: var(--text-light);
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-muted);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Gold shimmer effect */
.shimmer {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-title { font-size: 3.5rem; }
    .hero-tagline { font-size: 1.25rem; }

    .section-title h2 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 100px 0 50px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }

    /* Menu items image réduction */
    .menu-item-image {
        width: 100px;
        height: 100px;
    }

    /* Experience badge */
    .experience-badge {
        width: 90px;
        height: 90px;
        bottom: -10px;
        right: -10px;
    }
    .experience-badge .number { font-size: 1.4rem; }

    /* CTA */
    .cta-content h2 { font-size: 2rem; }

    /* Service cards tablet */
    .service-card { padding: 2rem 1.5rem; }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-title { font-size: 2.75rem; }
    .hero-tagline { font-size: 1.1rem; }
    .hero-description { font-size: 1rem; }
    .hero-content { max-width: 100%; }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .navbar-collapse {
        background: var(--dark-card);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
    
    .menu-item {
        flex-direction: column;
    }
    
    .menu-item-image {
        width: 100%;
        height: 200px;
        margin-bottom: 0.75rem;
    }
    
    .reservation-form-wrapper,
    .contact-form-wrapper {
        padding: 1rem;
    }

    /* Info cards responsive */
    .info-card { flex-direction: column; text-align: center; }
    .info-icon { width: 40px; height: 40px; margin: 0 auto; font-size: 1rem; }

    /* Hero buttons stack */
    .hero-buttons { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .hero .d-flex { flex-direction: column; gap: 0.75rem; align-items: center; }

    /* Dish cards */
    .dish-image { height: 180px; }

    /* Experience badge repositionné */
    .experience-badge { bottom: 1rem; right: 1rem; width: 80px; height: 80px; }
    .experience-badge .number { font-size: 1.2rem; }

    /* CTA */
    .cta-content h2 { font-size: 1.75rem; }
    .cta-content p { font-size: 0.95rem; }

    /* Service cards mobile */
    .service-card { padding: 1.75rem 1.25rem; }
    .service-card .service-icon { width: 60px; height: 60px; font-size: 1.5rem; }

    /* Footer responsive */
    footer { padding: 40px 0 15px; }
    footer h5 { font-size: 1.1rem; margin-bottom: 1rem; }
    .footer-social a { width: 36px; height: 36px; }
    .social-links a { width: 36px; height: 36px; font-size: 1rem; }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }

    .hero-title { font-size: 2.25rem; }
    .hero-tagline { font-size: 1rem; }
    .hero-subtitle { font-size: 0.75rem; letter-spacing: 2px; }
    .hero-slogan { font-size: 0.8rem; }
    .hero-buttons { gap: 0.5rem; }
    .hero-buttons .btn { width: 100%; justify-content: center; }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .navbar-brand .brand-name {
        display: none;
    }

    /* Section titles */
    .section-title h2 { font-size: 1.6rem; }
    .section-title p { font-size: 0.9rem; }
    .section-description { font-size: 0.9rem; }

    /* Card spacing */
    .card-custom { padding: 0.75rem; }

    /* Menu items compact */
    .menu-item-image { height: 160px; }
    .menu-item-header { flex-direction: column; gap: 0.25rem; }

    /* Service cards */
    .service-card { padding: 1.5rem 1rem; }
    .service-card .service-icon { width: 55px; height: 55px; font-size: 1.3rem; margin-bottom: 1rem; }
    .service-card h3 { font-size: 1.1rem; }

    /* Dish cards */
    .dish-image { height: 160px; }
    .dish-content { padding: 1rem; }
    .dish-name { font-size: 1.05rem; }

    /* Contact cards */
    .contact-card { padding: 1.5rem 1rem; }
    .contact-card .contact-icon { width: 55px; height: 55px; font-size: 1.3rem; }

    /* CTA */
    .cta-content h2 { font-size: 1.5rem; }

    /* Experience badge */
    .experience-badge { display: none; }

    /* Footer compact */
    footer { padding: 30px 0 10px; }
    .footer-bottom { margin-top: 1.5rem; padding-top: 1rem; font-size: 0.85rem; }
    .footer-bottom .row > div { text-align: center !important; margin-bottom: 0.5rem; }
    .social-links { justify-content: center; }
    .footer-brand h4 { font-size: 1.5rem; text-align: center; }
    .footer-tagline { text-align: center; }
    .footer-description { text-align: center; }

    /* Flash message responsive */
    .flash-message { top: 70px; right: 0.5rem; left: 0.5rem; width: auto; }
}

@media (max-width: 400px) {
    .hero { min-height: 80vh; }
    .hero h1 { font-size: 1.65rem; }
    .hero p { font-size: 0.85rem; }
    .hero-title { font-size: 1.9rem; }
    .hero-tagline { font-size: 0.9rem; }
    .section-title h2 { font-size: 1.4rem; }
    .page-header h1 { font-size: 1.5rem; }
    .page-header { padding: 70px 0 30px; }
    section { padding: 40px 0; }
    .navbar-brand img { max-height: 35px; }
    .info-icon { width: 36px; height: 36px; font-size: 0.9rem; }
    .cta-content h2 { font-size: 1.3rem; }
    .service-card { padding: 1.25rem 0.75rem; }
    .dish-content { padding: 0.75rem; }
}

/* ============ UTILITIES ============ */
.text-primary {
    color: var(--primary) !important;
}

.bg-dark-custom {
    background-color: var(--dark-card) !important;
}

.border-gold {
    border-color: var(--primary) !important;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader .spinner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--dark-card);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
