/* Paradise Vacation - Offre VIP CSS OptimisÃ© (6 KB vs 176 KB) */

/* 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;
}

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

/* Images Edge */
.pv-edge-img { display: block; margin: 24px auto; max-width: 960px; width: 100%; }
.pv-edge-img:first-of-type { margin-bottom: 0; }

/* Bouton Retour */
.pv-back-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  padding: 12px 25px;
  background: linear-gradient(135deg, var(--turquoise) 0%, var(--ocean) 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(23, 162, 184, 0.4);
  transition: all 0.3s ease;
}
.pv-back-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(23, 162, 184, 0.5);
}

/* Sections */
.pv-section { padding: 28px 24px; }
.pv-center { text-align: center; }

/* Bandeau Marque */
.pv-brand {
  background: var(--ocean);
  color: #fff;
}
.pv-brand h1 {
  margin: 0;
  font-weight: 700;
  line-height: 1.25;
  font-size: clamp(24px, 3.5vw, 34px);
}
.pv-brand h1 span.sub {
  display: block;
  font-weight: 400;
}

/* Section LimitÃ© */
.pv-limited {
  background: var(--sand);
}
.pv-limited h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 28px);
}
.pv-limited p {
  margin: 8px 0;
  font-size: clamp(16px, 2.3vw, 20px);
  line-height: 1.5;
}

/* Section Trust */
.pv-trust {
  background: var(--light);
}
.pv-trust h2 {
  margin: 0 0 12px;
  color: var(--ocean);
  font-size: clamp(20px, 2.6vw, 26px);
}
.pv-trust p {
  margin: 6px 0;
  font-size: clamp(16px, 2.2vw, 20px);
}

/* Hero */
.pv-hero {
  background: var(--ocean);
  color: #fff;
}
.pv-hero h2,
.pv-hero .tag { display: none; }

/* Destinations Header */
.pv-dest-head {
  background: var(--ocean);
}
.pv-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);
}

/* Destination Images */
.pv-dest-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Destination Cards */
.pv-dest-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px;
  margin: 0;
}
.pv-dest-title {
  margin: 0 0 6px;
  color: var(--sand);
  font-size: clamp(18px, 2.4vw, 22px);
}
.pv-dest-text {
  margin: 0;
  font-size: clamp(15px, 2.3vw, 18px);
  color: #fff;
}

/* Section Info */
.pv-info,
.pv-services {
  background: var(--light);
}
.pv-info h2,
.pv-services h2 {
  margin: 0 0 12px;
  color: var(--ocean);
  font-size: clamp(20px, 2.6vw, 26px);
}
.pv-info p,
.pv-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;
}

/* Contact */
.pv-contact {
  background: var(--turquoise);
  color: #fff;
}
.pv-contact h2 {
  margin: 0 0 15px;
  font-size: clamp(22px, 3vw, 28px);
}
.pv-contact p {
  margin: 10px 0;
  font-size: clamp(16px, 2.3vw, 20px);
}
.pv-contact a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transition: border-color 0.3s ease;
}
.pv-contact a:hover {
  border-color: #fff;
}

/* Footer Minimal */
.pv-footer-minimal {
  background: #f8f9fa;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #dee2e6;
}
.pv-footer-minimal a {
  color: var(--turquoise);
  text-decoration: none;
}
.pv-footer-minimal a:hover {
  text-decoration: underline;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .pv-section { padding: 20px 16px; }
  .pv-back-btn {
    top: 15px;
    right: 15px;
    padding: 10px 20px;
    font-size: 14px;
  }
  .pv-edge-img { margin: 16px auto; }
}

@media (max-width: 480px) {
  .pv-back-btn {
    top: 10px;
    right: 10px;
    padding: 8px 16px;
    font-size: 13px;
  }
}
