@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@300;400;600&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background: #0a0a0a; color: #eee; line-height: 1.6; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; text-align: center; }

header {
    background: #000;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    color: #d4af37;
}

nav a {
    color: #eee;
    margin: 0 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2em;
}

nav a:hover {
    color: #d4af37;
}

.page-content {
    margin-top: 100px;
    padding: 60px 0;
}

/* HERO INDEX – AVION EN FOND */
.hero {
    height: 100vh;
    background: url('avion.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5em;
    color: #d4af37;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.8em;
    margin-bottom: 60px;
    color: #fff;
}

.btn-luxe {
    background: #d4af37;
    color: #000;
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 1.6em;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(212,175,55,0.5);
    transition: all 0.4s;
}

.btn-luxe:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212,175,55,0.7);
}

/* GRID – ESPACE ENTRE CARTES */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin: 80px 0;
}

/* CARTES SÉJOURS – BOUTONS PARFAITS (pas coupés) */
.card {
    background: #111;
    border-radius: 30px;
    padding: 50px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    transition: transform 0.4s;
}

.card:hover {
    transform: translateY(-20px);
}

.card h3 {
    color: #d4af37;
    font-size: 2.2em;
    margin-bottom: 25px;
}

.card p {
    margin: 20px 0;
    font-size: 1.3em;
}

/* BOUTON DANS SÉJOURS – BEAU, ENTIER, GLOW JAUNE */
.card .btn-luxe {
    display: block;
    margin: 40px auto 0;
    width: 80%;
    padding: 25px;
    font-size: 1.8em;
    background: #d4af37;
    box-shadow: 0 15px 40px rgba(212,175,55,0.6);
}

.card .btn-luxe:hover {
    box-shadow: 0 25px 60px rgba(212,175,55,0.8);
}

/* DÉTAILS – ESPACE ENTRE CARTES DÉPARTS */
.grid .card {
    padding: 40px;
}

footer {
    background: #000;
    color: #888;
    padding: 50px 20px;
    text-align: center;
    margin-top: 100px;
}

/* ======================== INSCRIPTION.PHP – DESIGN LUXE NOIR/OR ======================== */
.inscription-container {
    max-width: 900px;
    margin: 0 auto;
}

.inscription-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3.8em;
    margin-bottom: 60px;
}

.reservation-form {
    background: #111;
    padding: 70px;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.3em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 22px 25px;
    background: #222;
    border: 2px solid #444;
    border-radius: 20px;
    color: #fff;
    font-size: 1.2em;
    transition: all 0.4s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 30px rgba(212,175,55,0.4);
    transform: translateY(-3px);
}

.form-group input::placeholder {
    color: #777;
}

.btn-reserver {
    width: 100%;
    padding: 30px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000;
    border: none;
    border-radius: 60px;
    font-size: 2em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 50px;
    box-shadow: 0 20px 50px rgba(212,175,55,0.6);
    transition: all 0.4s;
}

.btn-reserver:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 80px rgba(212,175,55,0.8);
}

.success-box {
    background: linear-gradient(135deg, #001a00, #003300);
    padding: 80px;
    border-radius: 30px;
    text-align: center;
    border: 3px solid #4ade80;
    color: #eee;
}

.success-box i {
    font-size: 4em;
    color: #4ade80;
    margin-bottom: 30px;
}

.success-box h2 {
    font-size: 2.8em;
    color: #4ade80;
    margin-bottom: 20px;
}

.error-box {
    background: linear-gradient(135deg, #330000, #660000);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    border: 3px solid #ef4444;
    color: #ff6b6b;
    margin-bottom: 50px;
    font-size: 1.4em;
}

/* DÉPART PRÉ-SÉLECTIONNÉ – AFFICHAGE FIXE */
.selected-depart-display {
    background: #222;
    padding: 22px 25px;
    border-radius: 20px;
    font-size: 1.2em;
    color: #fff;
    border: 2px solid #d4af37;
    box-shadow: 0 0 20px rgba(212,175,55,0.3);
}

/* ======================== SÉJOURS – VILLE EN GROS, PAYS EN PETIT ======================== */
.destination-card {
    position: relative;
    height: 580px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    transition: all 0.6s ease;
}

.destination-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 0 90px rgba(212,175,55,0.6);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.destination-card:hover .card-image img {
    transform: scale(1.15);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.98) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 60px 30px;
    text-align: center;
    color: white;
}

.card-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2em; /* Ville en très gros */
    margin: 0 0 10px 0;
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.9);
}

.country {
    color: #d4af37;
    font-size: 1.6em; /* Pays en petit dessous */
    margin-bottom: 30px;
    font-weight: 600;
}

.info-icons p {
    margin: 15px 0;
    font-size: 1.3em;
}

.info-icons i {
    color: #d4af37;
    margin-right: 12px;
}

.price {
    font-size: 2.2em;
    color: #4ade80;
    font-weight: bold;
    margin: 30px 0;
}

.btn-decouvrir {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 20px 60px;
    border-radius: 60px;
    font-size: 1.6em;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(255,215,0,0.5);
    transition: all 0.4s;
}

.btn-decouvrir:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(255,215,0,0.7);
}

/* ======================== SÉJOURS – CARTES ESPACÉES, PAS DE SUPERPOSITION ======================== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 80px; /* ESPACE ENTRE CARTES AUGMENTÉ */
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px; /* MARGES LATÉRALES POUR ÉVITER LE BORD */
}

.destination-card {
    position: relative;
    height: 600px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    transition: all 0.6s ease;
    margin-bottom: 40px; /* ESPACE VERTICAL SUPPLÉMENTAIRE */
}

.destination-card:hover {
    transform: translateY(-30px);
    box-shadow: 0 0 100px rgba(212,175,55,0.7);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.destination-card:hover .card-image img {
    transform: scale(1.15);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.98) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 70px 30px;
    text-align: center;
    color: white;
}

.card-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2em;
    margin: 0 0 10px 0;
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.9);
}

.country {
    color: #d4af37;
    font-size: 1.6em;
    margin-bottom: 30px;
    font-weight: 600;
}

.info-icons p {
    margin: 15px 0;
    font-size: 1.3em;
}

.info-icons i {
    color: #d4af37;
    margin-right: 12px;
}

.price {
    font-size: 2.2em;
    color: #4ade80;
    font-weight: bold;
    margin: 30px 0;
}

.btn-decouvrir {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 20px 60px;
    border-radius: 60px;
    font-size: 1.6em;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(255,215,0,0.5);
    transition: all 0.4s;
}

.btn-decouvrir:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(255,215,0,0.7);
}