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

    html, body {
      height: 100%;
      overflow-x: hidden;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #0D0A1F;
      color: #FFFFFF;
    }

    /* Header fixe */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(13, 10, 31, 0.95);
      backdrop-filter: blur(10px);
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      box-shadow: 0 4px 20px rgba(255, 122, 0, 0.2);
    }

    .logo-header {
      height: 50px;
      width: auto;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(255, 75, 145, 0.4);
    }

    .brand-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      background: linear-gradient(90deg, #FF7A00, #FF4B91, #A83EF6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      cursor: pointer;
      text-decoration: none;
    }

    nav {
      display: flex;
      gap: 2rem;
    }

    nav a {
      color: #C9C3D2;
      text-decoration: none;
      font-weight: 400;
      transition: all 0.3s;
      position: relative;
    }

    nav a:hover {
      color: #FF7A00;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #FF7A00, #FF4B91);
      transition: width 0.3s;
    }

    nav a:hover::after {
      width: 100%;
    }

    /* Pages communes */
    .page {
      min-height: 100%;
      padding: 8rem 2rem 4rem;
      display: none;
    }

    .page.active {
      display: block;
    }

    /* Section Héros */
    .hero {
      min-height: 100%;
      background: linear-gradient(135deg, #0D0A1F 0%, #1C1333 50%, #2A1B4A 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 8rem 2rem 4rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 75, 145, 0.1) 0%, transparent 70%);
      animation: glow 8s ease-in-out infinite;
    }

    @keyframes glow {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(10%, 10%) scale(1.1); }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      animation: fadeInUp 1s ease-out;
    }

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

    .logo-hero {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      margin-bottom: 2rem;
      box-shadow: 0 0 40px rgba(255, 75, 145, 0.6), 0 0 80px rgba(168, 62, 246, 0.4);
      animation: pulse 3s ease-in-out infinite;
    }

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

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      font-weight: 700;
      background: linear-gradient(90deg, #FF7A00, #FF4B91, #A83EF6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
      text-shadow: 0 0 30px rgba(255, 122, 0, 0.5);
    }

    .hero p {
      font-size: 1.3rem;
      color: #C9C3D2;
      margin-bottom: 3rem;
      max-width: 700px;
    }

    .hero-buttons {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-primary {
      background: linear-gradient(90deg, #FF7A00, #FF4B91, #A83EF6);
      color: #FFFFFF;
      padding: 1rem 2.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      box-shadow: 0 0 25px rgba(255, 75, 145, 0.6);
      transition: all 0.3s;
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 40px rgba(255, 75, 145, 0.9);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      color: #FFFFFF;
      padding: 1rem 2.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      border: 2px solid rgba(255, 122, 0, 0.5);
      transition: all 0.3s;
      cursor: pointer;
    }

    .btn-secondary:hover {
      background: rgba(255, 122, 0, 0.2);
      border-color: #FF7A00;
      transform: translateY(-3px);
    }

    /* Slider avis */
    .reviews-section {
      background: #1C1333;
      padding: 3rem 0;
      overflow: hidden;
    }

    .reviews-container {
      display: flex;
      gap: 1.5rem;
      animation: scroll 15s linear infinite;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .review-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 1.5rem;
      min-width: 300px;
      border: 1px solid rgba(255, 122, 0, 0.3);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }

    .review-stars {
      color: #F5B642;
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

    .review-text {
      color: #C9C3D2;
      font-size: 0.95rem;
      margin-bottom: 0.5rem;
    }

    .review-author {
      color: #FF7A00;
      font-weight: 600;
      font-size: 0.9rem;
    }

    /* Formulaire contact */
    .contact-section {
      background: linear-gradient(135deg, #1C1333 0%, #0D0A1F 100%);
      padding: 5rem 2rem;
    }

    .contact-container {
      max-width: 600px;
      margin: 0 auto;
    }

    .contact-title {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      text-align: center;
      background: linear-gradient(90deg, #FF7A00, #FF4B91, #A83EF6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 3rem;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      color: #C9C3D2;
      margin-bottom: 0.5rem;
      font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.05);
      border: 2px solid rgba(255, 122, 0, 0.3);
      border-radius: 15px;
      color: #FFFFFF;
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      transition: all 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #FF7A00;
      box-shadow: 0 0 20px rgba(255, 122, 0, 0.4);
    }

    .form-group textarea {
      min-height: 150px;
      resize: vertical;
    }

    .submit-btn {
      width: 100%;
      background: linear-gradient(90deg, #FF7A00, #FF4B91, #A83EF6);
      color: #FFFFFF;
      padding: 1.2rem;
      border-radius: 50px;
      border: none;
      font-weight: 600;
      font-size: 1.1rem;
      cursor: pointer;
      box-shadow: 0 0 25px rgba(255, 75, 145, 0.6);
      transition: all 0.3s;
    }

    .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 40px rgba(255, 75, 145, 0.9);
    }

    /* Footer */
    footer {
      background: #0D0A1F;
      padding: 3rem 2rem;
      border-top: 2px solid rgba(255, 122, 0, 0.3);
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

    .footer-section h3 {
      font-family: 'Playfair Display', serif;
      color: #FF7A00;
      margin-bottom: 1rem;
      font-size: 1.5rem;
    }

    .footer-section p,
    .footer-section a {
      color: #C9C3D2;
      line-height: 1.8;
      text-decoration: none;
      display: block;
    }

    .footer-section a:hover {
      color: #FF7A00;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 122, 0, 0.2);
      color: #C9C3D2;
    }

    /* Page Menu */
    .menu-page {
      background: linear-gradient(135deg, #0D0A1F 0%, #1C1333 100%);
    }

    .menu-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .menu-header h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 700;
      background: linear-gradient(90deg, #FF7A00, #FF4B91, #A83EF6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
    }

    .menu-header .divider {
      width: 150px;
      height: 3px;
      background: linear-gradient(90deg, #FF7A00, #FF4B91, #A83EF6);
      margin: 1.5rem auto;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(168, 62, 246, 0.6);
    }

    .menu-header p {
      font-size: 1.2rem;
      color: #C9C3D2;
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      max-width: 1400px;
      margin: 0 auto 4rem;
    }

    .menu-category-card {
      background: rgba(168, 62, 246, 0.1);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(168, 62, 246, 0.3);
      border-radius: 25px;
      padding: 2rem;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .menu-category-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.2), transparent);
      transition: left 0.5s;
    }

    .menu-category-card:hover::before {
      left: 100%;
    }

    .menu-category-card:hover {
      transform: translateY(-10px);
      border-color: #FF7A00;
      box-shadow: 0 15px 40px rgba(255, 122, 0, 0.4);
    }

    .category-icon {
      font-size: 4rem;
      margin-bottom: 1rem;
      filter: drop-shadow(0 0 10px rgba(255, 75, 145, 0.6));
    }

    .category-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: #FFFFFF;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .category-btn {
      display: inline-block;
      padding: 0.8rem 1.5rem;
      background: rgba(255, 122, 0, 0.2);
      border: 1px solid rgba(255, 122, 0, 0.5);
      border-radius: 20px;
      color: #FF7A00;
      font-size: 0.95rem;
      font-weight: 500;
      transition: all 0.3s;
    }

    .menu-category-card:hover .category-btn {
      background: rgba(255, 122, 0, 0.4);
      color: #FFFFFF;
    }

    .menu-cta {
      text-align: center;
      padding: 3rem 0;
    }

    .menu-cta-btn {
      display: inline-block;
      padding: 1.5rem 4rem;
      background: linear-gradient(90deg, #FF7A00, #FF4B91, #A83EF6);
      color: #FFFFFF;
      text-decoration: none;
      border-radius: 50px;
      font-size: 1.3rem;
      font-weight: 600;
      box-shadow: 0 0 30px rgba(255, 75, 145, 0.6);
      transition: all 0.3s;
    }

    .menu-cta-btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 50px rgba(255, 75, 145, 0.9);
    }

    /* Sous-pages catégories */
    .category-page {
      padding-top: 6rem;
    }

    .category-header {
      text-align: center;
      margin-bottom: 4rem;
      position: relative;
    }

    .back-btn {
      position: absolute;
      top: 0;
      right: 2rem;
      background: rgba(255, 122, 0, 0.2);
      border: 2px solid rgba(255, 122, 0, 0.5);
      color: #FF7A00;
      padding: 0.8rem 1.5rem;
      border-radius: 25px;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s;
    }

    .back-btn:hover {
      background: rgba(255, 122, 0, 0.4);
      color: #FFFFFF;
      transform: translateX(-5px);
    }

    .category-icon-large {
      font-size: 5rem;
      margin-bottom: 1.5rem;
      filter: drop-shadow(0 0 20px rgba(255, 75, 145, 0.8));
    }

    .category-header h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 700;
      background: linear-gradient(90deg, #FF7A00, #FF4B91, #A83EF6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
    }

    .category-header .divider {
      width: 150px;
      height: 3px;
      background: linear-gradient(90deg, #FF7A00, #FF4B91, #A83EF6);
      margin: 1.5rem auto;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(168, 62, 246, 0.6);
    }

    .category-header p {
      font-size: 1.2rem;
      color: #C9C3D2;
    }

    .dishes-container {
      max-width: 1200px;
      margin: 0 auto 4rem;
      min-height: 300px;
      padding: 2rem;
    }

    .dish-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(168, 62, 246, 0.3);
      border-radius: 20px;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      transition: all 0.3s;
    }

    .dish-card:hover {
      transform: translateY(-5px);
      border-color: #FF7A00;
      box-shadow: 0 10px 30px rgba(255, 122, 0, 0.3);
    }

    .dish-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.8rem;
      gap: 1rem;
    }

    .dish-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: #FFFFFF;
      flex: 1;
    }

    .dish-price {
      font-size: 1.3rem;
      font-weight: 600;
      background: linear-gradient(90deg, #FF7A00, #FF4B91, #A83EF6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      white-space: nowrap;
    }

    .dish-description {
      color: #C9C3D2;
      font-size: 1rem;
      line-height: 1.6;
    }

    /* Modal galerie */
    .gallery-modal {
      display: none;
      position: fixed;
      z-index: 2000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      justify-content: center;
      align-items: center;
      padding: 2rem;
    }

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

    .gallery-modal-content {
      max-width: 90%;
      max-height: 90%;
      border-radius: 20px;
      box-shadow: 0 0 50px rgba(255, 122, 0, 0.5);
    }

    .gallery-modal-close {
      position: absolute;
      top: 2rem;
      right: 2rem;
      font-size: 3rem;
      color: #FFFFFF;
      cursor: pointer;
      background: rgba(255, 122, 0, 0.3);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      border: 2px solid rgba(255, 122, 0, 0.5);
    }

    .gallery-modal-close:hover {
      background: rgba(255, 122, 0, 0.6);
      transform: rotate(90deg);
    }

    /* Responsive */
    @media (max-width: 768px) {
      header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
      }

      .logo-header {
        height: 40px;
      }

      .brand-name {
        font-size: 1.2rem;
      }

      nav {
        flex-wrap: wrap;
        gap: 0.8rem;
        justify-content: center;
      }

      nav a {
        font-size: 0.9rem;
      }

      .page {
        padding: 6rem 1rem 2rem;
      }

      .hero {
        padding: 6rem 1rem 2rem;
      }

      .logo-hero {
        width: 150px;
        height: 150px;
      }

      .hero h1 {
        font-size: 2rem;
      }

      .hero p {
        font-size: 1rem;
        padding: 0 1rem;
      }

      .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
      }

      .btn-primary, .btn-secondary {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
      }

      .review-card {
        min-width: 250px;
      }

      .contact-section {
        padding: 3rem 1rem;
      }

      .contact-title {
        font-size: 2rem;
      }

      .form-group input,
      .form-group textarea {
        font-size: 0.95rem;
      }

      .menu-header h1, .category-header h1 {
        font-size: 2rem;
      }

      .menu-header p, .category-header p {
        font-size: 1rem;
        padding: 0 1rem;
      }

      .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
      }

      .category-icon {
        font-size: 3rem;
      }

      .category-name {
        font-size: 1.5rem;
      }

      .menu-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 90%;
      }

      .back-btn {
        position: static;
        margin-bottom: 2rem;
        width: 100%;
      }

      .category-icon-large {
        font-size: 3.5rem;
      }

      .dishes-container {
        padding: 1rem;
      }

      .dish-card {
        padding: 1.2rem;
      }

      .dish-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }

      .dish-name {
        font-size: 1.3rem;
      }

      .dish-price {
        font-size: 1.2rem;
      }

      .dish-description {
        font-size: 0.95rem;
      }

      .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .footer-section h3 {
        font-size: 1.3rem;
      }

      .footer-section p,
      .footer-section a {
        font-size: 0.95rem;
      }

      .gallery-modal-close {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        top: 1rem;
        right: 1rem;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 1.8rem;
      }

      .menu-header h1, .category-header h1 {
        font-size: 1.8rem;
      }

      .dish-name {
        font-size: 1.2rem;
      }

      .menu-cta-btn {
        font-size: 0.95rem;
        padding: 0.9rem 1.5rem;
      }
       ===== LOADING SCREEN ===== 
#loader {
    position: fixed;
    inset: 0;
    background: #0f172a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: white;
    font-family: Arial, sans-serif;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255,255,255,0.2);
    border-top: 6px solid #38bdf8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 12px;
}
.hover-underline {
  position: relative;
  cursor: pointer;
}

.hover-underline::after {
  content: "";
  position: absolute;
  width: 100%; /* 🔥 souligné en permanence */
  height: 3px;
  bottom: -4px;
  left: 0;
  background: white;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
    }*
