/* Fichier principal CSS - Importe tous les autres */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@400;500;600;700&display=swap');
@import 'variables.css';
@import 'components.css';
@import 'header-footer.css';
@import 'ramadan-marketing.css';
@import 'responsive.css';

/* Hero Section Moderne */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  padding: var(--spacing-24) var(--spacing-6);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay),
              url('../images/bg_principal.png') center/cover;
  z-index: -1;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(26, 31, 58, 0.8) 100%);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-block;
  padding: var(--spacing-2) var(--spacing-4);
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--color-accent-gold);
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-accent-gold);
  margin-bottom: var(--spacing-6);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(1.75rem, 8vw, 3.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  line-height: 1.2;
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-title .text-gold {
  color: var(--color-accent-gold);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: var(--spacing-10);
  color: rgba(255, 255, 255, 0.95);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: var(--spacing-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-12);
}

.hero-badges {
  display: flex;
  gap: var(--spacing-8);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-12);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  color: var(--color-white);
  font-size: var(--font-size-sm);
  background: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-3) var(--spacing-5);
  border-radius: var(--border-radius-full);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
}

.badge-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.badge-icon {
  color: var(--color-accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon svg {
  width: 20px;
  height: 20px;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--spacing-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-2);
  color: var(--color-white);
  font-size: var(--font-size-xs);
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Section Intro */
.section-intro {
  background: var(--color-bg-light);
}

/* Section Process */
.section-process {
  background: var(--color-bg-light);
}

/* Section Contact */
.section-contact {
  background: var(--color-bg-light);
}

/* Responsive Hero - Géré dans responsive.css pour éviter les duplications */

/* Smooth scroll behavior */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Print styles */
@media print {
  .header-main,
  .footer,
  .hero-ctas,
  .btn {
    display: none;
  }
}
