/* === HERO ACCUEIL SECTION === */
.hero-accueil {
    padding: 5rem 0 9rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-accueil::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="0.3" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-accueil__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-accueil__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

/* === CONTENU TEXTUEL === */
.hero-accueil__text {
    animation: slideInLeft 0.8s ease-out;
}

.hero-accueil__intro {
    margin-bottom: 1.5rem;
}

.hero-accueil__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.hero-accueil__subtitle::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
}

.hero-accueil__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    background: linear-gradient(45deg, #ffffff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-accueil__description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 500px;
}

/* === BADGES === */
.hero-accueil__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-accueil__badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-accueil__badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
}

/* === BOUTONS === */
.hero-accueil__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-accueil__btn {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.hero-accueil__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.hero-accueil__btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: white;
    color: #667eea;
    border-color: white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn--primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn--secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
}

.btn--secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* === IMAGE === */
.hero-accueil__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.hero-accueil__image-wrapper {
    position: relative;
    text-align: center;
}

.hero-accueil__image {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-accueil__image:hover {
    transform: scale(1.05);
}

.hero-accueil__location {
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.hero-accueil__location-icon {
    font-size: 1.1rem;
}

/* === PLACEHOLDER === */
.hero-accueil__placeholder {
    width: 320px;
    height: 320px;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.hero-accueil__placeholder-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.hero-accueil__placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-accueil__placeholder-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.hero-accueil__placeholder-hint {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* === SCROLL INDICATOR === */
.hero-accueil__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 45%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.hero-accueil__scroll-text {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-accueil__scroll-arrow {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

/* === ANIMATIONS === */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    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);
    }
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .hero-accueil__content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-accueil__visual {
        order: -1;
    }
    
    .hero-accueil__image,
    .hero-accueil__placeholder {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .hero-accueil {
        padding: 5rem 0 10rem;
        min-height: auto;
    }
    
    .hero-accueil__container {
        padding: 0 1.5rem;
    }
    
    .hero-accueil__content {
        gap: 2rem;
    }
    
    .hero-accueil__description {
        font-size: 1.1rem;
    }
    
    .hero-accueil__buttons {
        justify-content: center;
    }
    
    .hero-accueil__btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
    
    .hero-accueil__image,
    .hero-accueil__placeholder {
        width: 250px;
        height: 250px;
    }

    .hero-accueil__subtitle::after {
        left: 7rem;
    }

    
}

@media (max-width: 480px) {
    .hero-accueil {
        padding: 10rem 0;
    }
    
    .hero-accueil__container {
        padding: 0 1rem;
    }
    
    .hero-accueil__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-accueil__btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-accueil__badges {
        justify-content: center;
    }
    
    .hero-accueil__badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .hero-accueil__subtitle::after {
        left: 47px;
    }

    .hero-accueil__scroll-indicator {
        left: 38%;
    }
}

/* === SCROLL INDICATOR AVANCÉ === */
.hero-accueil__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  /* left: 50%; */
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 1s ease-out 1.2s both;
  z-index: 5;
}

.scroll-mouse {
  width: 28px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  position: relative;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
}

.scroll-wheel {
  width: 4px;
  height: 10px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.6s infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  30% {
    opacity: 1;
    transform: translate(-50%, 8px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 16px);
  }
}

.hero-accueil__scroll-text {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}