/* ========================================
   GLOBAL HERO PAGES - Pages offres/pricing/contact/legal
   Style hero TYPE "DROITE" et TYPE "CARTE"
   Source : offres.html (référence TYPE "DROITE")
   Consolidé depuis : offres.css, pricing.css, contact.css, legal-pages.css
   ======================================== */

/* ========================================
   SECTION 1 : HERO TYPE "DROITE" (offres, pricing)
   ======================================== */

.hero-offres,
.hero-pricing,
.hero-contact {
    padding-top: 0 !important;
    margin-top: 0 !important;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(255, 56, 92, 0.45) 0%, rgba(255, 56, 92, 0.3) 40%, rgba(255, 56, 92, 0.2) 70%, rgba(255, 56, 92, 0.15) 100%),
                url('../assets/images/hero-restaurant.jpg') center bottom/cover no-repeat;
    background-attachment: fixed;
    color: #FFFFFF;
    padding-bottom: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}

/* Padding interne pour le contenu du hero - Compenser le header fixe */
.hero-offres .container,
.hero-pricing .container,
.hero-contact .container {
    padding-top: 100px; /* Compenser le header fixe */
}

/* Hero content pour contact (structure différente) */
.hero-contact .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 80px;
    color: white;
}

/* Overlay radial gradient */
.hero-offres::before,
.hero-pricing::before,
.hero-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-offres .container,
.hero-pricing .container,
.hero-contact .container {
    position: relative;
    z-index: 2;
}

.hero-offres > *:not(header):not(.landing-header),
.hero-pricing > *:not(header):not(.landing-header),
.hero-contact > *:not(header):not(.landing-header) {
    position: relative;
    z-index: 2;
}

/* Titre hero TYPE "DROITE" */
.hero-offres h1,
.hero-pricing h1,
.hero-contact h1,
.hero-contact .hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: white;
    font-family: var(--font-family, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
}

/* ========================================
   SECTION 2 : HERO TYPE "CARTE" (legal uniquement)
   Note: .hero-contact géré dans SECTION 1 (utilisé par pricing.html aussi)
   ======================================== */

.hero-legal {
    padding-top: 0 !important;
    margin-top: 0 !important;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(255, 56, 92, 0.45) 0%, rgba(255, 56, 92, 0.3) 40%, rgba(255, 56, 92, 0.2) 70%, rgba(255, 56, 92, 0.15) 100%),
                url('../assets/images/hero-restaurant.jpg') center bottom/cover no-repeat;
    background-attachment: fixed;
    color: #FFFFFF;
    padding-bottom: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}

/* Padding interne pour le contenu du hero - Compenser le header fixe */
.hero-legal .container {
    padding-top: 100px; /* Compenser le header fixe */
}

/* Hero content pour legal */
.hero-legal .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 80px;
    color: white;
}

/* Overlay radial gradient */
.hero-legal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-legal .container,
.hero-legal .hero-content {
    position: relative;
    z-index: 2;
}

.hero-legal > *:not(header):not(.landing-header) {
    position: relative;
    z-index: 2;
}

/* Titre hero TYPE "CARTE" */
.hero-legal h1,
.hero-legal .hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: white;
    font-family: var(--font-family, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
}

/* ========================================
   SECTION 3 : SOUS-TITRE (commun à tous les hero)
   ======================================== */

.hero-subtitle {
    font-size: 1.375rem;
    opacity: 0.95;
    font-weight: 400;
    color: white;
    font-family: var(--font-family, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
}

