/* =======================================
   Sky Vacation Club - Offre VIP CSS
   Version: 2.0 - Optimisé & Nettoyé
   Date: Novembre 2025
   ======================================= */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Variables Couleurs */
:root {
    --ocean: #014F86;
    --turquoise: #17a2b8;
    --coral: #FF6B6B;
    --sand: #FFC857;
    --light: #EAF4FB;
    --white: #FFFFFF;
}

/* Container */
.container {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
}

/* Images edge (bannières) */
.pv-edge-img {
    display: block;
    margin: 24px auto;
    max-width: 960px;
    width: 100%;
}

.pv-edge-img:first-of-type {
    margin-bottom: 0;
}

/* Sections */
.section {
    padding: 28px 24px;
}

.center {
    text-align: center;
}

/* Bandeau Marque */
.brand {
    background: var(--ocean);
    color: #fff;
}

.brand h1 {
    margin: 0;
    font-weight: 700;
    line-height: 1.25;
    font-size: clamp(24px, 3.5vw, 34px);
}

.brand h1 .sub {
    display: block;
    font-weight: 400;
}

/* Encadré limité (jaune) */
.limited {
    background: var(--sand);
}

.limited h2 {
    margin: 0 0 10px;
    font-size: clamp(22px, 3vw, 28px);
}

.limited p {
    margin: 8px 0;
    font-size: clamp(16px, 2.3vw, 20px);
    line-height: 1.5;
}

/* Image promo */
.promo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Confiance */
.trust {
    background: var(--light);
}

.trust h2 {
    margin: 0 0 12px;
    color: var(--ocean);
    font-size: clamp(20px, 2.6vw, 26px);
}

.trust p {
    margin: 6px 0;
    font-size: clamp(16px, 2.2vw, 20px);
}

/* Destinations */
.dest-head {
    background: var(--ocean);
}

.dest-head h2 {
    margin: 0;
    color: var(--sand);
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.3px;
    font-size: clamp(18px, 2.6vw, 24px);
}

.dest-img img {
    width: 100%;
    height: auto;
    display: block;
}

.dest-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px;
    margin: 0;
}

.dest-title {
    margin: 0 0 6px;
    color: var(--sand);
    font-size: clamp(18px, 2.4vw, 22px);
}

.dest-text {
    margin: 0;
    font-size: clamp(15px, 2.3vw, 18px);
    color: #fff;
}

/* Infos & services */
.info,
.services {
    background: var(--light);
}

.info h2,
.services h2 {
    margin: 0 0 12px;
    color: var(--ocean);
    font-size: clamp(20px, 2.6vw, 26px);
}

.info p,
.services p {
    margin: 10px 0;
    border-left: 4px solid var(--ocean);
    padding-left: 10px;
    font-size: clamp(15px, 2.3vw, 18px);
    line-height: 1.6;
}

/* =======================================
   BOUTON RETOUR (uniformisé avec site)
   Style identique aux pages blog, politique, conditions
   ======================================= */

.pv-back-section {
    text-align: center;
    padding: 40px 24px 50px;
    background: var(--light);
}

.pv-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Oswald', Arial, sans-serif;
}

.pv-btn-accent {
    background-color: var(--coral);
    color: var(--white);
}

.pv-btn-accent:hover {
    background-color: #00BCD4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* =======================================
   RESPONSIVE
   ======================================= */

@media (max-width: 768px) {
    .section {
        padding: 20px 16px;
    }

    .pv-edge-img {
        margin: 16px auto;
    }

    .pv-back-section {
        padding: 30px 16px 40px;
    }

    .pv-btn {
        padding: 0.65rem 1.75rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .pv-back-section {
        padding: 25px 12px 35px;
    }

    .pv-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}
