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

  body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

   
        /* Header */
        header {
          background: rgba(255, 255, 255, 0.95);
          backdrop-filter: blur(10px);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
          position: fixed;
          width: 100%;
          top: 0;
          z-index: 1000;
          transition: all 0.3s ease;
      }

      nav {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 1rem 20px;
          max-width: 1200px;
          margin: 0 auto;
      }

      .logo {
          font-size: 2rem;
          font-weight: bold;
          background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
      }

      .nav-links {
          display: flex;
          list-style: none;
          gap: 2rem;
      }

      .nav-links a {
          text-decoration: none;
          color: #333;
          font-weight: 500;
          transition: color 0.3s ease;
          position: relative;
      }

      .nav-links a:hover {
          color: #ff6b6b;
      }

      .nav-links a::after {
          content: "";
          position: absolute;
          width: 0;
          height: 2px;
          bottom: -5px;
          left: 0;
          background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
          transition: width 0.3s ease;
      }

      .nav-links a:hover::after {
          width: 100%;
      }

      /* Bouton hamburger */
      .hamburger {
          display: none;
          flex-direction: column;
          cursor: pointer;
          gap: 4px;
          padding: 5px;
      }

      .hamburger span {
          width: 25px;
          height: 3px;
          background: #333;
          transition: all 0.3s ease;
          border-radius: 2px;
      }

      .hamburger.active span:nth-child(1) {
          transform: rotate(45deg) translate(5px, 5px);
      }

      .hamburger.active span:nth-child(2) {
          opacity: 0;
      }

      .hamburger.active span:nth-child(3) {
          transform: rotate(-45deg) translate(7px, -6px);
      }

      /* Menu mobile */
      .mobile-nav {
          display: none;
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          background: rgba(255, 255, 255, 0.98);
          backdrop-filter: blur(10px);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
          border-top: 1px solid rgba(0, 0, 0, 0.1);
      }

      .mobile-nav.active {
          display: block;
          animation: slideDown 0.3s ease;
      }

      .mobile-nav-links {
          list-style: none;
          padding: 1rem 0;
      }

      .mobile-nav-links li {
          border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      }

      .mobile-nav-links a {
          display: block;
          padding: 1rem 2rem;
          text-decoration: none;
          color: #333;
          font-weight: 500;
          transition: all 0.3s ease;
      }

      .mobile-nav-links a:hover {
          background: rgba(255, 107, 107, 0.1);
          color: #ff6b6b;
          padding-left: 2.5rem;
      }

      @keyframes slideDown {
          from {
              opacity: 0;
              transform: translateY(-10px);
          }
          to {
              opacity: 1;
              transform: translateY(0);
          }
      }

      /* Responsive */
      @media (max-width: 768px) {
          .nav-links {
              display: none;
          } 

          .hamburger {
              display: flex;
          }

          .logo {
              font-size: 1.5rem;
          }
      }


  /* Hero Section */
  .hero {
    margin-top: 80px;
    padding: 4rem 0;
    text-align: center;
    color: white;
  }

  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
  }

  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
  }

  .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  /* Main Content */
  main {
    background: white;
    margin-top: 2rem;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem 0;
  }

  /* Filters */
  .filters {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
  }

  .filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
  }

  .filter-group select,
  .filter-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e8ff;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }

  .filter-group select:focus,
  .filter-group input:focus {
    outline: none;
    border-color: #667eea;
  }

  .filter-btn {
    padding: 12px 25px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease;
  }

  .filter-btn:hover {
    transform: translateY(-2px);
  }

  /* Events Grid */
  .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }

  .event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .event-image {
    height: 200px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
  }

  .event-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
  }

  .event-content {
    padding: 1.5rem;
  }

  .event-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
  }

  .event-date {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .event-location {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .event-description {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .ticket-types {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }

  .ticket-type {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
  }

  .ticket-solo {
    background: #e3f2fd;
    color: #1976d2;
  }

  .ticket-couple {
    background: #fce4ec;
    color: #c2185b;
  }

  .ticket-vip {
    background: #fff3e0;
    color: #f57c00;
  }

  .event-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #4ecdc4;
    margin-bottom: 1rem;
  }

  .buy-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .buy-button:hover {
    transform: translateY(-2px);
  }

  /* Modal */
  .modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
  }

  .modal-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
  }

  .close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
  }

  .close-modal:hover {
    color: #333;
  }

  .ticket-selection {
    margin: 2rem 0;
  }

  .ticket-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e1e8ff;
    border-radius: 10px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .ticket-option:hover,
  .ticket-option.selected {
    border-color: #667eea;
    background: #f8f9ff;
  }

  .quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
  }

  .quantity-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #667eea;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s ease;
  }

  .quantity-btn:hover {
    background: #5a6fd8;
  }

  .quantity-input {
    width: 60px;
    text-align: center;
    padding: 10px;
    border: 2px solid #e1e8ff;
    border-radius: 10px;
  }

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

  @keyframes modalSlideIn {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }

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

    .events-grid {
      grid-template-columns: 1fr;
    }

    .filter-row {
      grid-template-columns: 1fr;
    }
  }

  /* Loading animation */
  .loading {
    display: none;
    text-align: center;
    padding: 2rem;
  }

  .spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  /* Styles pour le footer */
  .site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2rem 0 0;
    margin-top: 3rem;
    border-top: 1px solid #e1e1e1;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }

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

  .footer-section {
    padding: 0 1rem;
  }

  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2c3e50;
  }

  .footer-about-text {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #666;
  }

  .footer-social {
    display: flex;
    gap: 1rem;
  }

  .social-icon {
    font-size: 1.2rem;
    color: #555;
    transition: color 0.3s;
  }

  .social-icon:hover {
    color: #3498db;
  }

  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    position: relative;
    padding-bottom: 0.5rem;
  }

  .footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #3498db;
  }

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

  .footer-links li {
    margin-bottom: 0.8rem;
  }

  .footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-links a:hover {
    color: #3498db;
  }

  .footer-contact-info {
    list-style: none;
    padding: 0;
    color: #666;
    line-height: 1.8;
  }

  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .newsletter-form input {
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 4px;
  }

  .newsletter-form button {
    padding: 0.6rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .newsletter-form button:hover {
    background-color: #2980b9;
  }

  .footer-bottom {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 1rem 0;
    margin-top: 2rem;
  }

  .footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-legal {
    display: flex;
    gap: 1.5rem;
  }

  .footer-legal a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }

  .footer-legal a:hover {
    color: #3498db;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr 1fr;
    }

    .footer-bottom-container {
      flex-direction: column;
      text-align: center;
    }

    .footer-legal {
      margin-top: 0.5rem;
    }
  }

  @media (max-width: 480px) {
    .footer-container {
      grid-template-columns: 1fr;
    }
  }