section {
    padding: 5% 7%;
}

.container-section h2 {
    color: var(--primary-color);
    font-size: 3em;
}

/* HERO SECTION */
.hero-page {
    position: relative;
    height: 60vh;
    margin-top: -80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-size: 3em;
}

/* VOLS INITIATION */
.intro-content h3 {
    font-size: 1.7em;
}

.price-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    border: 1px solid #333;
    border-radius: 30px;
    font-weight: bold;
}

/* GRILLE AVIONS */
.avions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
}

.avion-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 25px;
    text-align: center;
}

/* Titre de l'avion */
.avion-name {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.avion-specs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.avion-specs p {
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* GALERIE */
.galerie-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.galerie-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 20px;
}

.galerie-grid img:first-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

/* PDF */
.pdf-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pdf-card {
    width: 80%;
    border-radius: 20px;
    overflow: hidden;
    margin: 2% 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.pdf-card img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: auto;
}

.pdf-card:hover {
    transform: translateY(-10px);
}

/* DESKTOP RESPONSIVE */
@media (min-width: 768px) {
    .hero-content {
        text-align: left;
        width: 100%;
        max-width: 1200px;
    }

    .hero-content h1 {
        font-size: 64px;
    }

    .avions-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .galerie-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .galerie-grid img:first-child {
        grid-column: auto;
        aspect-ratio: 1/1;
    }

    .pdf-card {
        width: 60%;
    }
}