﻿/* Conteneur principal avec fond */
.home-container {
  min-height: 100vh;
  background-image: url('../images/background_bleute_4k.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

  /* Overlay pour améliorer la lisibilité */
  .home-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }

/* Wrapper du contenu */
.content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo animé */
.logo-container {
  text-align: center;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease-out;
}

.main-logo {
  max-width: 500px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0,150,255,0.3));
}

/* Contenu héro */
.hero-content {
  text-align: center;
  color: white;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out 0.3s both;
}
/*
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #00a8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 20px rgba(0,168,255,0.3);
}
  */
.hero-subtitle {
  font-size: 1.5rem;
  color: #b0d4f1;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Boutons CTA - Style uniforme */
.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons button {
  width: 360px;
}

.btn-primary, .btn-secondary {
  margin: 1rem 1rem;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #0084ff 0%, #00c9ff 100%);
  color: white;
  box-shadow: 0 5px 20px rgba(0,150,255,0.4);
}

.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,150,255,0.6);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .main-logo {
    max-width: 300px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
  }
}
