@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=SUSE+Mono:ital,wght@0,100..800;1,100..800&display=swap');

/* Variables de couleur basées sur le logo */
:root {
  --primary-blue: #0066cc;
  --secondary-blue: #003366;
  --accent-orange: #ff6600;
  --light-blue: #e6f0ff;
  --white: #ffffff;
  --dark-text: #333333;
  --font-script: 'Dancing Script', cursive;
  --font-mono: 'SUSE Mono', monospace;
}

/* Reset et styles de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: var(--dark-text);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  font-family: var(--font-mono); /* Police générale du site */
}

/* Titres en Dancing Script */
h1, h2, .hero h1 {
  font-family: var(--font-script);
}

/* Paragraphes aussi en Dancing Script */
p {
  font-family: var(--font-script);
}

    /* Loader */
    .loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--white);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.5s ease-out;
    }

    .loader.hidden {
      opacity: 0;
      pointer-events: none;
    }

    .loader-spinner {
      width: 60px;
      height: 60px;
      border: 5px solid var(--light-blue);
      border-top: 5px solid var(--primary-blue);
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* NAVBAR */
    .navbar {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      padding: 10px 0;
      font-family: var(--font-script);
      
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .nav-logo {
      height: 50px;
    }

    .nav-links {
      display: flex;
      list-style: none;
    }

    .nav-links li {
      margin-left: 30px;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--secondary-blue);
      font-weight: 600;
      font-size: 16px;
      transition: color 0.3s;
      position: relative;
    }

    .nav-links a:hover {
      color: var(--accent-orange);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--accent-orange);
      transition: width 0.3s;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    

    /* HERO SECTION */
    .hero {
      position: relative;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: var(--white);
      margin-top: 70px;
    }

    .background-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 51, 102, 0.7), rgba(0, 102, 204, 0.5));
      z-index: -1;
    }

    .hero-content {
      max-width: 800px;
      padding: 0 20px;
      z-index: 1;
    }

    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero p {
      font-size: 1.5rem;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .btn {
      display: inline-block;
      background-color: var(--accent-orange);
      color: var(--white);
      padding: 12px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1rem;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    }

    .btn:hover {
      background-color: var(--white);
      color: var(--accent-orange);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
    }

    .reservation-email {
      position: absolute;
      bottom: 100px;
      z-index: 2;
    }

    .email-btn {
      display: inline-flex;
      align-items: center;
      background-color: var(--primary-blue);
      color: var(--white);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    }

    .email-btn:hover {
      background-color: var(--white);
      color: var(--primary-blue);
      transform: translateY(-3px);
    }

    .email-btn i {
      margin-right: 10px;
    }

    
    /* ABOUT SECTION */
    .about-section {
      padding: 80px 20px;
      background-color: var(--light-blue);
    }

    .about-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
    }

    .about-content {
      flex: 1;
      min-width: 300px;
      padding: 20px;
    }

    .about-content h2 {
      font-size: 2.5rem;
      color: var(--secondary-blue);
      margin-bottom: 20px;
      position: relative;
    }

    .about-content h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 80px;
      height: 4px;
      background-color: var(--accent-orange);
    }

    .about-content p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 20px;
      color: var(--dark-text);
    }

    .about-images {
      flex: 1;
      min-width: 300px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      padding: 20px;
    }

    .about-image {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
    }

    .about-image:hover {
      transform: translateY(-5px);
    }

    .about-image img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .about-image-large {
      grid-column: span 2;
    }

    .about-image-large img {
      height: 250px;
    }

    /* FOOTER */
    .main-footer {
        background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: var(--white);
      padding: 60px 20px 30px;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .footer-logo {
      margin-bottom: 20px;
    }

    .footer-logo img {
      height: 50px;
    }

    .footer-about p {
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .footer-links h3, .footer-contact h3, .footer-newsletter h3 {
      font-size: 1.3rem;
      margin-bottom: 20px;
      position: relative;
    }

    .footer-links h3::after, .footer-contact h3::after, .footer-newsletter h3::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 40px;
      height: 3px;
      background-color: var(--accent-orange);
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: var(--white);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: var(--accent-orange);
    }

    .footer-contact p {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
    }

    .footer-contact i {
      margin-right: 10px;
      color: var(--accent-orange);
    }

    .footer-newsletter p {
      margin-bottom: 20px;
    }

    .newsletter-form {
      display: flex;
    }

    .newsletter-form input {
      flex: 1;
      padding: 12px;
      border: none;
      border-radius: 4px 0 0 4px;
    }

    .newsletter-form button {
      background-color: var(--accent-orange);
      color: var(--white);
      border: none;
      padding: 0 15px;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
    }

    .social-footer {
      background-color: var(--primary-blue);
      padding: 20px;
      text-align: center;
    }

    .social-footer a {
      display: inline-block;
      margin: 0 15px;
      transition: transform 0.3s;
    }

    .social-footer a:hover {
      transform: translateY(-5px);
    }

    .social-footer img {
      height: 30px;
      filter: brightness(0) invert(1);
    }

    .copyright {
      text-align: center;
      padding-top: 20px;
      margin-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      .hero p {
        font-size: 1.2rem;
      }

      .about-container {
        flex-direction: column;
      }

      .footer-container {
        grid-template-columns: 1fr;
      }
    }