@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Cinzel+Decorative:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap');

/* TITRES PRINCIPAUX = Cinzel */
h1, h2, h3 {
    font-family: "Cinzel", serif !important;
}

/* SOUS-TITRES = Cormorant SC */
h4, h5, h6 {
    font-family: "Cormorant SC", serif !important;
}

/* ===== RESET & FOND ===== */
body {
    margin: 0; /* IMPORTANT pour que le fond soit plein écran */
    padding: 0;
    font-family: "Lora", serif !important;
    background-color: #020817; /* bleu nuit Oradia */
}
.font-cinzel {
    font-family: "Cinzel", serif;
}

.font-cinzel-decorative {
    font-family: "Cinzel Decorative", serif;
}

/* ===== TEXTES ===== */
h1 {
    font-size: 16px;
    margin-top: 0;
}

p {
    color: inherit;
    font-size: 15px;
    margin-bottom: 10px;
    margin-top: 5px;
}

.card {
    max-width: 620px;
    margin: 0 auto;
    padding: 16px;
    border: 1px solid lightgray;
    border-radius: 16px;
}

.card p:last-child {
    margin-bottom: 0;
}

/* ===== TITRES HERO ===== */
.hero-title {
    font-family: "Cinzel", serif;
    font-size: 105px;
    font-weight: 700;
    color: #D4AF37;
    text-align: left;   /* corrigé */
    letter-spacing: 2px;
    margin: 0;
}

.hero-subtitle {
    font-family: "Cinzel Decorative", serif;
    font-size: 50px;
    font-weight: 400;
    color: #D4AF37;
    text-align: left;   /* corrigé */
    margin-top: 15px;
}

/* ===== SECTION HERO (IMAGE DE FOND) ===== */
.hero-section {
<<<<<<< HEAD
    background-image: url('/images/oradia-hero-4k.png');
=======
    background-image: url('images/oradia-hero-4k.png');
>>>>>>> b2b0c83 (Mise à jour majeure : plateau Tore + corrections images + ajustement cartes)
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 8vw;
    padding-right: 0vw;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(2, 8, 23, 0.95),
        rgba(2, 8, 23, 0.40),
        transparent
    );
}
