/* ═══ VERDON GÎTES — gite-soleillou.css ═══
   Styles spécifiques à la page Gîte Le Soleillou
   (/gite-le-soleillou-verdon/)
   Palette dominante : lavande (#8b72b8)
   Requiert styles.css
   ══════════════════════════════════════════════════ */

/* ── BOUTON LAVANDE ─────────────────────────────────── */
.btn-lav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lavande);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(139, 114, 184, 0.35);
}
.btn-lav:hover {
  background: #7a62a8;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(139, 114, 184, 0.45);
}

/* ── SEC-TAG LAVANDE ─────────────────────────────────── */
.sec-tag-lav {
  color: var(--lavande) !important;
}
.sec-tag-lav::before {
  background: var(--lavande) !important;
}

/* ── HERO ──────────────────────────────────────────── */
.sol-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.sol-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.sol-hero:hover .sol-hero-bg {
  transform: scale(1);
}
.sol-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 12, 28, 0.84) 0%,
    rgba(18, 12, 28, 0.42) 50%,
    rgba(18, 12, 28, 0.12) 100%
  );
}
.sol-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 1.5rem 3.5rem;
}
.sol-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.sol-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(139, 114, 184, 0.18);
  border: 1px solid rgba(139, 114, 184, 0.38);
  color: #c9b8e8;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.sol-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 0.9rem;
}
.sol-hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.sol-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
}
.sol-hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 50px;
}
.sol-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── BREADCRUMB ─────────────────────────────────────── */
.breadcrumb {
  padding: 1.2rem 2rem;
  background: var(--stone-light);
  font-size: 0.82rem;
  color: var(--text-light);
}
.breadcrumb a {
  color: var(--lavande);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--aqua);
}
.breadcrumb span {
  margin: 0 8px;
  opacity: 0.4;
}

/* ── INTRO ──────────────────────────────────────────── */
.sol-intro {
  background: var(--warm-white);
  padding: 5rem 1.5rem;
  border-top: 1px solid rgba(139, 114, 184, 0.08);
}
.sol-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.sol-intro-text h2 {
  margin-bottom: 1.25rem;
}
.sol-intro-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 0.9rem;
}
.sol-intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.sol-stat {
  background: white;
  border-radius: 18px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(45, 37, 32, 0.05);
  border: 1px solid rgba(139, 114, 184, 0.12);
}
.sol-stat-val {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--lavande);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.sol-stat-val small {
  font-size: 1rem;
}
.sol-stat-lbl {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ── GITE SECTION ───────────────────────────────────── */
.sol-gite {
  padding: 5rem 1.5rem;
  background: var(--cream);
}
.sol-gite-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.sol-gite-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.sol-gite-num {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--lavande);
  line-height: 1;
  border: 2px solid rgba(139, 114, 184, 0.22);
  border-radius: 16px;
  padding: 0.4rem 1rem;
  flex-shrink: 0;
}
.sol-gite-sub {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 0.5rem;
}

/* ── GALLERY ────────────────────────────────────────── */
.sol-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2.5rem;
}

/* ── IMAGE PRINCIPALE ─────────────────────────────────── */
.sol-gallery-main {
  position: relative;
  height: clamp(300px, 50vw, 540px);
  border-radius: 18px;
  overflow: hidden;
  background: #111;
}

/* Fond flouté */
.sol-gallery-bg {
  position: absolute;
  inset: -30px;
  background-size: cover;
  background-position: center;
  filter: blur(28px);
  transform: scale(1.1);
  opacity: 0.8;
  z-index: 0;
  transition: background-image 0s;
}

/* Photo principale */
.sol-gallery-main > img.main-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.25s ease;
  display: block;
}

/* Badge */
.sol-gallery-badge {
  position: absolute;
  z-index: 3;
  bottom: 46px;
  left: 14px;
  max-width: calc(100% - 160px);
  background: rgba(10, 8, 6, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 5px 13px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

/* Flèches image principale */
.sol-main-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(10, 8, 6, 0.52);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  padding: 0;
}
.sol-main-arrow:hover {
  background: var(--lavande);
  transform: translateY(-50%) scale(1.08);
}
.sol-main-arrow-prev {
  left: 12px;
}
.sol-main-arrow-next {
  right: 12px;
}

/* Barre bas-droite */
.sol-gallery-bar {
  position: absolute;
  z-index: 3;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sol-gallery-zoom,
.sol-gallery-counter {
  background: rgba(10, 8, 6, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 11px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  line-height: 1;
}
.sol-gallery-zoom {
  cursor: pointer;
  transition: background 0.2s;
}
.sol-gallery-zoom:hover {
  background: var(--lavande);
}

/* ── BANDE MINIATURES ─────────────────────────────────── */
.sol-gallery-strip {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sol-gallery-thumbs-wrap {
  flex: 1;
  overflow: hidden;
}
.sol-gallery-thumbs {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.sol-thumb {
  flex: 0 0 calc((100% - 5 * 6px) / 6);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.2s,
    border-color 0.2s;
  border: 2px solid transparent;
  opacity: 0.55;
  display: block;
  min-width: 0;
}
.sol-thumb:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.sol-thumb.active {
  border-color: var(--lavande);
  opacity: 1;
  transform: translateY(-2px);
}

/* Flèches bande */
.sol-strip-arrow {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid rgba(45, 37, 32, 0.12);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}
.sol-strip-arrow:hover {
  background: var(--lavande);
  border-color: var(--lavande);
  color: white;
  transform: scale(1.08);
}
.sol-strip-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

/* ── LIGHTBOX ─────────────────────────────────────────── */
.sol-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.sol-lightbox[hidden] {
  display: none;
}

.sol-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 4, 2, 0.93);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  cursor: zoom-out;
}
.sol-lb-inner {
  position: relative;
  z-index: 2;
  max-width: min(94vw, 1300px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.sol-lb-inner img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  transition: opacity 0.2s;
  display: block;
}
.sol-lb-caption {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  text-align: center;
}
.sol-lb-close {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 9010;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.sol-lb-close:hover {
  background: rgba(255, 255, 255, 0.25);
}
.sol-lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9010;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s,
    transform 0.2s;
}
.sol-lb-arrow:hover {
  background: var(--lavande);
  transform: translateY(-50%) scale(1.08);
}
.sol-lb-prev {
  left: 12px;
}
.sol-lb-next {
  right: 12px;
}

/* ── ÉQUIPEMENTS ────────────────────────────────────── */
.sol-equip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.sol-equip-card {
  background: white;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(45, 37, 32, 0.04);
  border: 1px solid rgba(45, 37, 32, 0.04);
  transition: all 0.3s;
}
.sol-equip-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(45, 37, 32, 0.07);
}
.sol-equip-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.sol-equip-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.sol-equip-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── DIFF TAGS ──────────────────────────────────────── */
.sol-diff {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 0.5rem;
}
.sol-diff-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
}
.sol-diff-tag.lav {
  background: var(--lavande-soft);
  color: var(--lavande);
  border: 1px solid rgba(139, 114, 184, 0.2);
}

/* ── OPTIONS ────────────────────────────────────────── */
.sol-options {
  background: var(--stone);
  padding: 5rem 1.5rem;
}
.sol-options-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.sol-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.sol-option-card {
  background: white;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(45, 37, 32, 0.04);
  border: 1px solid rgba(139, 114, 184, 0.08);
}
.sol-option-icon {
  width: 48px;
  height: 48px;
  background: var(--lavande-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.sol-option-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.sol-option-price {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lavande);
  margin-bottom: 0.5rem;
}
.sol-option-price small {
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 400;
  margin-left: 3px;
}
.sol-option-card > p:last-child {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.sol-options-note {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-top: 0.5rem;
}

/* ── CTA SECTION ────────────────────────────────────── */
.sol-cta-section {
  background: var(--warm-white);
  padding: 5rem 1.5rem;
}
.sol-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sol-cta-box {
  background: linear-gradient(135deg, #6b4fa8 0%, var(--lavande) 100%);
  border-radius: 28px;
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}
.sol-cta-box::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.sol-cta-left {
  position: relative;
  z-index: 2;
}
.sol-cta-left h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: white;
  margin-bottom: 0.85rem;
}
.sol-cta-left p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.sol-cta-savings {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 7px 16px;
  border-radius: 50px;
  color: #e0d4f5;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}
.sol-cta-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* ── ALSO (maillage) ────────────────────────────────── */
.sol-also {
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(139, 114, 184, 0.12);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(45, 37, 32, 0.05);
}
.sol-also-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: center;
}
.sol-also-text {
  padding: 2.5rem;
}
.sol-also-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin: 0.5rem 0 1rem;
}
.sol-also-text p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.sol-also-imgs {
  height: 220px;
  overflow: hidden;
}
.sol-also-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.sol-also:hover .sol-also-imgs img {
  transform: scale(1.04);
}

/* ── SEO TEXT ───────────────────────────────────────── */
.sol-seo {
  background: var(--stone);
  padding: 4rem 1.5rem;
  border-top: 1px solid rgba(45, 37, 32, 0.06);
}
.sol-seo-inner {
  max-width: 860px;
  margin: 0 auto;
}
.sol-seo h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.sol-seo p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.sol-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}
.sol-seo-links a {
  font-size: 0.82rem;
  color: var(--lavande);
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 114, 184, 0.3);
  transition:
    color 0.2s,
    border-color 0.2s;
}
.sol-seo-links a:hover {
  color: #7a62a8;
  border-color: var(--lavande);
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 960px) {
  .sol-intro-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .sol-equip {
    grid-template-columns: 1fr 1fr;
  }
  .sol-options-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sol-cta-box {
    grid-template-columns: 1fr;
  }
  .sol-also-inner {
    grid-template-columns: 1fr;
  }
  .sol-also-imgs {
    height: 200px;
  }
  .sol-gite-header {
    flex-direction: column;
    gap: 1rem;
  }
  .sol-thumb {
    flex: 0 0 calc((100% - 3 * 6px) / 4);
  } /* 4 visibles */
}
@media (max-width: 600px) {
  .sol-hero-content {
    padding: 6rem 1.5rem 3.5rem;
  }
  .sol-hero-cta {
    display: none;
  }
  .sol-equip {
    grid-template-columns: 1fr;
  }
  .sol-options-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sol-gallery-main {
    height: clamp(200px, 62vw, 300px);
  }
  .sol-thumb {
    flex: 0 0 calc((100% - 2 * 6px) / 3);
    border-radius: 7px;
  } /* 3 visibles */
  .sol-strip-arrow {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
  }
  .sol-main-arrow {
    width: 34px;
    height: 34px;
  }
  .sol-gallery-badge {
    bottom: 42px;
    font-size: 0.65rem;
  }
  /* Flèches lightbox en bas sur mobile */
  .sol-lb-arrow {
    top: auto;
    bottom: 20px;
    transform: none;
    width: 44px;
    height: 44px;
  }
  .sol-lb-prev {
    left: calc(50% - 54px);
  }
  .sol-lb-next {
    right: calc(50% - 54px);
  }
  .sol-lb-arrow:hover {
    transform: scale(1.06);
  }
}
