* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #000;
  color: #fff;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1631702825172-a9a848c473ad") center/cover no-repeat;
  height: 120vh;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.6), rgba(0,0,0,.9));
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, #ef4444, #f59e0b);
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 700px;
  margin: 25px 0;
  color: #ccc;
  font-size: 1.2rem;
}

/* BUTTONS */
.btn {
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.btn.primary {
  background: linear-gradient(90deg, #dc2626, #b91c1c);
  color: #fff;
}

.btn.primary:hover {
  transform: scale(1.05);
}

.btn.secondary {
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
}

/* EVENTS */
.events {
  padding: 100px 20px;
  background: #111;
  text-align: center;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.event-card {
  background: linear-gradient(#1f2933, #020617);
  border-radius: 20px;
  overflow: hidden;
  transition: .4s;
}

.event-card:hover {
  transform: translateY(-10px);
}

/* CTA */
.cta {
  padding: 120px 20px;
  text-align: center;
  background: radial-gradient(circle, rgba(220,38,38,.2), transparent);
}




/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f0f10;
}

::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background-color: #dc2626;
    color: white;
}

/* Font smoothing */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hide Emergent badge */
#emergent-badge {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}





/***Css harmonisé complet et mis à jour *****/

:root {
  --primary: #d97706;
  --secondary: #1f2937;
  --bg: #0f172a;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --radius: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #020617;
  color: var(--text);
  line-height: 1.6;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1631702825172-a9a848c473ad?crop=entropy&cs=srgb&fm=jpg&ixid=M3w3NDQ2Mzl8MHwxfHNlYXJjaHwxfHxyZWQlMjBjdXJ0YWlucyUyMHRoZWF0ZXJ8ZW58MHx8fHwxNzcwMDI3NTI1fDA&ixlib=rb-4.1.0&q=85");
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  will-change: transform;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2,6,23,0.5),
    rgba(2,6,23,0.95)
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.hero h1 span {
  display: block;
  color: var(--primary);
}

.hero p {
  color: var(--muted);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  width: 24px;
  height: 40px;
  border: 2px solid var(--muted);
  border-radius: 999px;
  z-index: 3;
}

.scroll-indicator::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--muted);
  border-radius: 50%;
  margin: 6px auto;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ================= BUTTONS ================= */

.btn {
  padding: 14px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn.primary {
  background: var(--primary);
  color: #000;
}

.btn.primary:hover {
  background: #f59e0b;
}

.btn.secondary {
  border: 1px solid var(--muted);
  color: var(--text);
}

.btn.secondary:hover {
  background: rgba(255,255,255,0.1);
}

.btn.big {
  font-size: 1.1rem;
  padding: 18px 36px;
}

/* ================= SECTIONS ================= */

section {
  padding: 100px 6%;
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 60px;
}

/* ================= EVENTS ================= */

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.event-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform .3s;
}

.event-card:hover {
  transform: translateY(-8px);
}

.event-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.event-card .content {
  padding: 20px;
}

.event-card h3 {
  margin-bottom: 8px;
}

.event-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.center {
  text-align: center;
  margin-top: 50px;
}

/* ================= WHY ================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.why-card {
  padding: 40px 30px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  text-align: center;
}

.why-card h3 {
  margin: 16px 0;
}

.red { border-top: 4px solid #ef4444; }
.amber { border-top: 4px solid #f59e0b; }
.purple { border-top: 4px solid #a855f7; }

/* ================= CTA ================= */

.cta {
  background: linear-gradient(
    to right,
    #d97706,
    #f59e0b
  );
  color: #000;
  text-align: center;
  border-radius: var(--radius);
  margin: 80px 6%;
}

.cta p {
  margin: 20px 0 30px;
}







/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.5s ease;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.navbar.scrolled {
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
}

.logo-icon {
  font-size: 28px;
  color: #dc2626;
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.1);
}

.logo-text span {
  display: block;
  font-size: 12px;
  color: #9ca3af;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  position: relative;
  padding: 10px 16px;
  color: #d1d5db;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: white;
}

.nav-links a.active::before,
.nav-links a:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #dc2626, #b91c1c);
  border-radius: 8px;
  z-index: -1;
}

.reserve {
  margin-left: 10px;
  background: linear-gradient(to right, #dc2626, #b91c1c);
  color: white !important;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
}

/* Mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
  padding: 20px;
}

.mobile-menu a {
  padding: 12px;
  color: #d1d5db;
  text-decoration: none;
  border-radius: 8px;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: linear-gradient(to right, #dc2626, #b91c1c);
  color: white;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-menu.open {
    display: flex;
  }
}
