/* =============================================
   HOME.CSS - Page d'accueil
   ============================================= */

.home-header {
    position: relative;
    height: 42vh;
    min-height: 300px;
    border-bottom-left-radius: var(--radius-L);
    border-bottom-right-radius: var(--radius-L);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    background: #000;
}

.home-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.home-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(0px);
}

.home-content {
    position: relative;
    z-index: 10;
    color: white;
    margin-bottom: 10px;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFF 0%, #F3F4F6 100%);
    color: #1F2937;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.home-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    line-height: 1.1;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 400;
    max-width: 90%;
}

.home-body {
    padding: 0 24px;
    margin-top: -35px;
    position: relative;
    z-index: 20;
}

/* SEARCH FLOATING */
.search-floating {
    background: var(--surface);
    padding: 8px;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

#voiceBtn {
    width: 48px;
    height: 48px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

#voiceBtn.listening {
    color: #ef4444;
    background: #fee2e2;
    animation: pulseRed 1.5s infinite;
}

.search-floating input {
    flex: 1;
    font-size: 1rem;
    color: var(--text-main);
    background: transparent;
    font-weight: 600;
    min-width: 0;
}

#searchBtn {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    flex-shrink: 0;
}

/* SECTION TITLE */
.section-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 25px 0 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
}

/* HORIZONTAL SCROLL */
.horizontal-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}