/* === Hero Section – TunisiaVision === */
.tv-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: url('https://tunisiavision.com/wp-content/uploads/2026/02/desert-tunisie.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter Tight', sans-serif;
    margin-top: 0;
    top: 0;
}

/* Overlay discret pour lisibilité */
.tv-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.05));
    z-index: 1;
}

/* Contenu centré */
.tv-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

/* Titre en Dahlia */
.tv-hero__title {
    font-family: 'Dahlia', 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

/* Sous‑titre */
.tv-hero__subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: rgba(255,255,255,0.9);
    margin: 0 0 2.5rem;
    line-height: 1.5;
}

/* Ajustements mobile */
@media (max-width: 768px) {
    .tv-hero {
        height: 70vh;
        min-height: 400px;
    }
}

/* Annule les marges et paddings du conteneur Elementor de la Hero */
.tv-hero-wrapper,
.tv-hero-wrapper .e-con-inner {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}