
.modal {
  padding-top: 50px;
}

.modal-dialog-centered {
  min-height: calc(100vh - 80px);
}

html {
    scroll-behavior: smooth;
}

.follow_container {
    width: 100%;
    position: absolute;
    top: 35%;
    text-align: center;
}
.starter_follow {
    display: inline-block;
    width: 80%;
    z-index: 1;
    margin: 0 auto;
    padding: 0;
}

.white{
    color: white;
	text-decoration: underline;
}
.navactive{
   border-bottom: 1px solid #96E16B;
}
/* ✅ Largeur UNIQUEMENT pour cartes produits */
.product-card,
.menu-card {
    width: 265px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    font-family: Arial, sans-serif;
}

/* ✅ Les cards structurelles doivent prendre toute la largeur */
.container-fluid .card,
.row .card {
    width: 100%;
    max-width: 100%;
}
/* ✅ FIX DEFINITIF DASHBOARD */
.products-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    width: 100%;
    min-width: 0;
    padding-bottom: 12px;
}

/* ✅ Empêche flex-bootstrap d’écraser la colonne */
.col-xl-10,
.col-lg-9,
.col-md-8,
.col-xl-2,
.col-lg-3,
.col-md-4 {
    min-width: 0;
}

/* =========================
   NAVBAR – STYLE BAR LOUNGE
========================= */

.navbar-bar {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar .nav-link.active {
    color: #f5c26b !important;
    font-weight: 500;
}
/* ✅ NAVBAR TOUJOURS AU-DESSUS */
.navbar-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999; /* ✅ PLUS HAUT QUE LE HERO */
}

/* Brand */
.bar-brand {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: #f5c26b;
}
.bar-brand:hover {
    color: #d9aa5f;
}

/* Links */
.bar-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    position: relative;
    z-index: 2;
}

/* Hover / active */
.bar-link:hover,
.bar-link.active {
    color: #f5c26b !important;
}

/* Underline effect */
.bar-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: #f5c26b;
    transition: width .3s ease;
    z-index: -1;
}

.bar-link:hover::after,
.bar-link.active::after {
    width: 100%;
}



.bar-link.active {
    color: #f5c26b;
}

/* Dropdown */
.bar-dropdown {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 8px;
}

.bar-dropdown .dropdown-item {
    color: #eee;
    padding: 10px 14px;
    border-radius: 8px;
}

.bar-dropdown .dropdown-item:hover {
    background: rgba(245,194,107,0.15);
    color: #f5c26b;
}
/* ✅ Item actif dans le dropdown OPTIONS */
.bar-dropdown .dropdown-item.active {
    background: rgba(245, 194, 107, 0.18);
    color: #f5c26b;
    font-weight: 500;
}

/* Buttons */
.btn-bar {
    background: #f5c26b;
    color: #000;
    border-radius: 30px;
    padding: 8px 22px;
    font-weight: 600;
}

.btn-bar:hover {
    background: #d9aa5f;
}

.btn-bar-outline {
    border: 2px solid #f5c26b;
    color: #f5c26b;
    border-radius: 30px;
    padding: 6px 20px;
}

.btn-bar-outline:hover {
    background: #f5c26b;
    color: #000;
}

/* ✅ TEXTE TOUJOURS VISIBLE */
.bar-link:hover,
.bar-link:focus,
.bar-link.active {
    color: #f5c26b !important;
}
``

/* Conteneur image */
.card-img {
    width: 100%;
    height: 200px;
    overflow: hidden; /* ✅ empêche débordement image */
}
.center{
	text-align: center;
	margin-bottom:20px;
	margin-top:20px;
}
.centerCommande{
	text-align: center;
}
/* ===============================
   PAGE MENU – STYLE BAR / LOUNGE
================================ */


.menu-page {
    background: #f6f3ee; /* beige chaud */
    color: #2b2b2b;
    font-family: 'Poppins', sans-serif;
	padding-top: 50px; /* hauteur navbar */
}


/* TITRE */
.menu-header {
    color: #fff;
}


.menu-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: 4px;
    color: #9c6b2f; /* doré chaud */
}

.menu-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    color: #6d6d6d;
}


.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #f5c26b, #d89e3a);
    margin: 20px auto;
    border-radius: 10px;
}

/* CARTES PRODUITS */

.menu-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,.15);
}


/* IMAGE */

.menu-card-img {
    height: 220px;
    background: #eee;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.menu-card:hover img {
    transform: scale(1.08);
}

/* BODY */
.menu-card-body {
    padding: 18px;
}


.menu-card-title {
    color: #2c2c2c;
    font-weight: 500;
    font-size: 1.05rem;
}

.menu-card-price {
    color: #9c6b2f; /* cohérent avec le titre */
    font-weight: 600;
}


/* RESPONSIVE */
@media (max-width: 576px) {
    .menu-card-img {
        height: 180px;
    }

    .menu-title {
        letter-spacing: 2px;
    }
}
/* =========================
   PAGE ACCUEIL – HERO BAR
========================= */

.home-page {
    font-family: 'Poppins', sans-serif;
}

/* SECTION HERO AVEC IMAGE */
.starter_container {
    position: relative;
    min-height: 100vh;
    background: url("img/steak.jpg") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0; /* ✅ HERO DERRIÈRE */
}

/* OVERLAY (pour lisibilité) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
    pointer-events: none; /* ✅ NE BLOQUE PLUS JAMAIS LES CLICS */
}

/* CONTENU */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
}


/* TITRE */
.top-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3.5rem, 6vw, 6rem);
    letter-spacing: 6px;
    margin-bottom: 10px;
    color: #f5c26b;
}

/* SLOGAN */
.second-title {
    font-size: 1.3rem;
    letter-spacing: 2px;
    font-style: italic;
    opacity: .95;
}

/* DIVIDER */
.hero-divider {
    width: 90px;
    height: 3px;
    background: linear-gradient(to right, #f5c26b, #d9aa5f);
    margin: 25px auto;
    border-radius: 10px;
}

/* TEXTE */
.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 1px;
    opacity: .9;
    margin-bottom: 30px;
}

/* BOUTONS */
.btn-main {
    background: #f5c26b;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
}

.btn-main:hover {
    background: #d9aa5f;
    color: #000;
}

.btn-outline-main {
    border: 2px solid #f5c26b;
    color: #f5c26b;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 500;
}

.btn-outline-main:hover {
    background: #f5c26b;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .top-title {
        letter-spacing: 3px;
    }
}
/* ✅ CORRECTION TEXTE OPTIONS ACTIF */
.navbar-bar .nav-link.dropdown-toggle {
    color: #ffffff;
}

.navbar-bar .nav-link.dropdown-toggle.active {
    color: #f5c26b; /* doré visible */
}
/* =========================
   FIX MODALE PROFIL UNIQUEMENT
========================= */

.profil-modal {
    margin-top: 70px; /* hauteur navbar + espace */
}

/* Scroll propre uniquement pour le profil */
#profilModal .modal-body {
    max-height: calc(100vh - 180px);
    overflow-y: auto;
}
/* =========================
   FOOTER – STYLE BAR CHIC
========================= */

.footer-bar {
    background: linear-gradient(180deg, #1a1a1a, #0f0f0f);
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
}

/* Logo */
.footer-brand {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 3px;
    color: #f5c26b;
    margin-bottom: 12px;
}

/* Titres */
.footer-title {
    color: #f5c26b;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Texte */
.footer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: .9;
}

/* Listes */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* Contact */
.footer-contact {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Réseaux sociaux */
.footer-social {
    margin-top: 12px;
}
.footer-social a {
    display: inline-block;
    margin-right: 12px;
    font-size: 1.4rem;
    text-decoration: none;
    color: #f5c26b;
    transition: transform .2s ease, opacity .2s ease;
}
.footer-social a:hover {
    transform: scale(1.15);
    opacity: .85;
}

/* Ligne */
.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #f5c26b, transparent);
    margin: 30px 0 15px;
}

/* Bas */
.footer-bottom {
    font-size: 0.8rem;
    opacity: .75;
}

.badge {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
/* ==========================================
   FIX VISIBILITÉ BOUTON NAVBAR (MOBILE)
========================================== */

/* Icône hamburger */
.navbar-toggler {
    border-color: rgba(255, 193, 7, 0.6); /* jaune doré */
}

/* Icône hamburger (les 3 barres) */
.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* Hover / focus */
.navbar-toggler:hover,
.navbar-toggler:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}
/* ==========================================
   FIX CARD RÉCAPITULATIF (MONTANTS ÉLEVÉS)
========================================== */

/* Carte plus large et stable */
.card-box {
    max-width: 100%;
    overflow-x: auto;
}

/* Empêche les montants de se couper */
.recap-table th,
.recap-table td {
    white-space: nowrap;
}

/* Colonnes numériques alignées proprement */
.recap-table th:nth-child(3),
.recap-table th:nth-child(4),
.recap-table td:nth-child(3),
.recap-table td:nth-child(4) {
    text-align: right;
}

/* Mobile : tableau scroll horizontal si nécessaire */
@media (max-width: 768px) {
    .recap-table {
        min-width: 420px;
    }
}
/* ==========================================================
   FIX TOTAL CARD / TABLE RÉCAPITULATIF (DÉFINITIF)
========================================================== */

/* ==========================================================
   ✅ FIX DÉFINITIF CARD RÉCAPITULATIF
========================================================== */

/* Ne jamais contraindre le contenu d'une card */
.card-box {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;   /* ✅ clé */
}

/* Autoriser le scroll horizontal */
.recap-wrapper {
    width: 100%;
    overflow-x: auto;
}

/* Table toujours plus large que la card */
.recap-table {
    min-width: 700px;               /* ✅ clé */
    table-layout: auto !important;
}

/* Jamais de retour à la ligne dans les chiffres */
.recap-table th,
.recap-table td {
    white-space: nowrap;
}

/* Alignement des chiffres */
.recap-table th:nth-child(2),
.recap-table th:nth-child(3),
.recap-table th:nth-child(4),
.recap-table td:nth-child(2),
.recap-table td:nth-child(3),
.recap-table td:nth-child(4) {
    text-align: right;
}

/* TOTAL bien lisible */
.recap-table tfoot th {
    font-size: 1.2rem;
    font-weight: bold;
}
