/* ============================================
   PAGE D'ACCUEIL - HERO, SEARCH, ABOUT
   ============================================ */

/* HERO SECTION */
.hero {
  margin-top: var(--header-height);
  min-height: 75vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible !important;
  z-index: 0 !important;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 90, 95, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 53, 128, 0.15) 0%, transparent 50%);
  animation: heroGlow 10s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 53, 128, 0.8), rgba(118, 75, 162, 0.6));
  backdrop-filter: blur(1px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
  overflow: visible !important;
}

.hero-content {
  color: white;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
  font-weight: 400;
}

.hero-cta {
  display: inline-flex;
  padding: 16px 32px;
  font-size: 16px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

/* SEARCH CARD */
.search-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 32px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--glass-border);
  animation: fadeInUp 0.8s 0.2s cubic-bezier(0.4, 0, 0.2, 1) both;
  position: relative;
  z-index: 1 !important;
  overflow: visible !important;
}

/* ABOUT SECTION */
.about {
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.video-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16/9;
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-desc h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.about-desc p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* Section main & calendar fix */
.section,
.about,
#reservation {
  overflow: visible !important;
}

main {
  overflow: visible !important;
  position: relative;
  z-index: 0 !important;
}

/* Responsive home */
@media (max-width: 1127px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero { min-height: 60vh; }
  .search-card { padding: 24px; }
  .row.two-cols { grid-template-columns: 1fr; }
  .passengers { flex-wrap: wrap; }
  .section { padding: 60px 0; }
}

@media (max-width: 711px) {
  .hero-inner {
    margin-right: 15px;
    margin-left: 15px;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .search-card { padding: 20px; }
  .result-card { padding: 16px; }
  .price { font-size: 20px; }
}

@media (max-width: 417px) {
  .hero-cta {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

@media (max-width: 386px) {
  .hero-cta { font-size: 11px; }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive notifications */
@media (max-width: 600px) {
  .notification { max-width: 95%; font-size: 14px; padding: 12px 40px 12px 14px; }
}