/* ============================================================
   PHUKET360 — a-propos.css
   Page /a-propos/. Mobile-first.
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.apropos-hero {
  background: var(--ocean-deep);
  min-height: 200px;
  padding: 56px 24px 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apropos-hero-inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.apropos-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.apropos-breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.apropos-breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.apropos-breadcrumb a:hover {
  color: var(--soleil);
}

.apropos-breadcrumb .bc-sep {
  display: flex;
  align-items: center;
  opacity: 0.5;
}

.apropos-breadcrumb .bc-sep svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
}

.apropos-breadcrumb .bc-current {
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   SECTION PRINCIPALE
   ============================================================ */
.apropos-main {
  padding: 48px 16px 80px;
  background: var(--sable);
}

.apropos-main .container {
  max-width: 1000px;
  margin: 0 auto;
}

.apropos-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* ============================================================
   PHOTO
   ============================================================ */
.apropos-photo-wrap {
  text-align: center;
  margin-bottom: 28px;
}

.apropos-photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  display: inline-block;
}

/* ============================================================
   RÉSEAUX SOCIAUX
   ============================================================ */
.apropos-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.apropos-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.apropos-social-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.apropos-social-btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  flex-shrink: 0;
}

.apropos-social-instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.apropos-social-youtube {
  background: #FF0000;
}

/* ============================================================
   COLONNE TEXTE
   ============================================================ */
.apropos-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ocean-deep);
  margin: 0 0 12px;
}

.apropos-intro {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 16px;
  font-weight: 600;
}

.apropos-para {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0 0 16px;
}

.apropos-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  padding: 0;
}

.apropos-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.apropos-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(23, 165, 137, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.apropos-info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--emeraude);
  flex-shrink: 0;
}

/* ============================================================
   COLONNE STATS
   ============================================================ */
.apropos-stats-col {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.apropos-stats-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ocean-deep);
  margin: 0 0 24px;
}

.apropos-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.apropos-stat-card {
  background: var(--sable);
  border-radius: 10px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.apropos-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ocean-light);
  line-height: 1;
}

.apropos-stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.3;
}

/* ============================================================
   DESKTOP >= 768px
   ============================================================ */
@media (min-width: 768px) {

  .apropos-main {
    padding: 56px 24px 96px;
  }

  .apropos-wrapper {
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
  }

  .apropos-stats-col {
    padding: 40px 36px;
  }

}
