﻿/* ─────────────────────────────────────────────────────────
   EVENTS — Privatisation
───────────────────────────────────────────────────────── */

/* HERO */
.events-hero {
    position: relative;
    height: 88vh;
    min-height: 560px;
    background-size: cover;
    background-position: center 40%;
    display: flex;
    align-items: flex-end;
    padding: 0 80px 100px;
}

.events-hero-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(
        to bottom,
        rgba(27, 39, 68, 0.18) 0%,
        rgba(27, 39, 68, 0.55) 100%
    );
}

.events-hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.events-hero-eyebrow {
    display: block;
    font-family: "Jost", sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(253, 250, 245, 0.7);
    margin-bottom: 20px;
}

.events-hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 400;
    color: #FDFAF5;
    line-height: 1.12;
    letter-spacing: 0.01em;
    margin: 0 0 24px;
}

.events-hero-title em {
    font-style: italic;
    font-family: "Cormorant Garamond", serif;
}

.events-hero-sub {
    font-family: "Jost", sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(253, 250, 245, 0.55);
    margin: 0;
}

/* INTRO */
.events-intro {
    max-width: 760px;
    margin: 120px auto 80px;
    padding: 0 40px;
    text-align: center;
}

.events-intro-title {
    text-align: center;
}

.events-intro-text {
    margin: 0 auto;
    text-align: center;
    max-width: 580px;
}

/* GRID — 4 cartes */
.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin: 0 0 2px;
}

.events-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 72px 64px 80px;
    background: #FDFAF5;
    border: 1px solid rgba(27, 39, 68, 0.07);
    transition: background 0.4s ease;
}

.events-card:hover {
    background: #F5EFE6;
}

.events-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 36px;
    color: #9B7E54;
}

.events-card-icon svg {
    width: 100%;
    height: 100%;
}

.events-card-num {
    display: block;
    font-family: "Jost", sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #C5B49A;
    margin-bottom: 14px;
}

.events-card-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 400;
    color: #1B2744;
    line-height: 1.2;
    margin: 0 0 24px;
}

.events-card-title em {
    font-style: italic;
    font-family: "Cormorant Garamond", serif;
}

.events-card-text {
    font-family: "Inter", sans-serif;
    font-size: 0.97rem;
    font-weight: 300;
    line-height: 1.85;
    color: #6B7A8D;
    margin: 0 0 36px;
    flex: 1;
    max-width: 420px;
}

.events-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Jost", sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1B2744;
    text-decoration: none;
    border-bottom: 1px solid rgba(27, 39, 68, 0.25);
    padding-bottom: 4px;
    transition: color 0.2s ease, border-color 0.2s ease;
    align-self: flex-start;
}

.events-card-cta:hover {
    color: #9B7E54;
    border-color: #9B7E54;
}

/* CTA BAND */
.events-cta-band {
    background: #1B2744;
    padding: 120px 80px;
    text-align: center;
}

.events-cta-inner {
    max-width: 580px;
    margin: 0 auto;
}

.events-cta-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: #FDFAF5;
    margin: 0 0 20px;
    letter-spacing: 0.02em;
}

.events-cta-sub {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(253, 250, 245, 0.62);
    margin: 0 0 48px;
}

.events-cta-btn {
    display: inline-block;
    font-family: "Jost", sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1B2744;
    background: #FDFAF5;
    text-decoration: none;
    padding: 18px 48px;
    border-radius: 50px;
    transition: background 0.25s ease, color 0.25s ease;
}

.events-cta-btn:hover {
    background: #C5B49A;
    color: #1B2744;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .events-hero {
        padding: 0 40px 80px;
    }

    .events-intro {
        margin: 80px auto 60px;
        padding: 0 32px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .events-card {
        padding: 56px 40px 64px;
    }

    .events-cta-band {
        padding: 80px 40px;
    }
}

@media (max-width: 600px) {
    .events-hero {
        padding: 0 24px 64px;
        height: 80vh;
    }

    .events-intro {
        padding: 0 24px;
        margin: 64px auto 48px;
    }

    .events-card {
        padding: 48px 24px 56px;
    }

    .events-cta-band {
        padding: 64px 24px;
    }
}
