/* ── About Bora Bora Page ── */

/* ── Hero rouge ── */
.fd-rouge {
    background: #c40018;
}
.about-hero {
    padding: 52px 0 44px;
}
.about-hero .heading {
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,.3);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.about-hero .heading-text {
    color: rgba(255,255,255,.90);
    font-size: 1.6rem;
    max-width: 700px;
}

/* ── Section headings ── */
.about-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}
.about-subtext {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 20px;
}
.about-text {
    font-size: 1.45rem;
    color: #444;
    line-height: 1.75;
    margin-bottom: 14px;
}

/* ── Map filters ── */
.map-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.map-filter-btn {
    padding: 7px 16px;
    border: 1.5px solid #ccc;
    border-radius: 22px;
    background: #fff;
    color: #444;
    font-size: 1.25rem;
    font-weight: 500;
    cursor: pointer;
    transition: background .18s, border-color .18s, color .18s;
    white-space: nowrap;
}
.map-filter-btn:hover {
    border-color: #c40018;
    color: #c40018;
}
.map-filter-btn.active {
    background: #c40018;
    border-color: #c40018;
    color: #fff;
}

/* ── Map layout (carte + panneau info) ── */
.map-layout {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

/* ── Map wrapper ── */
#map-wrapper {
    flex: 1 1 60%;
    min-width: 0;
    overflow: hidden;
    border-radius: 14px;
    border: 2px solid #e0e0e0;
    background: #e8f4f8;
    position: relative;
    cursor: grab;
}
#map-wrapper:active { cursor: grabbing; }

#mapcontainer {
    position: relative;
    display: inline-block;
    width: 100%;
}
#map-img {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* ── Zoom controls ── */
.map-zoom-controls {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}
.map-zoom-btn {
    width: 38px;
    height: 38px;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    background: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, border-color .15s;
    padding: 0;
}
.map-zoom-btn:hover {
    background: #f5f5f5;
    border-color: #999;
}

/* ── Info panel ── */
#map-info {
    flex: 0 0 280px;
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e0e0e0;
    padding: 22px 20px;
    box-shadow: 0 3px 12px rgba(0,0,0,.07);
    min-height: 200px;
}
.map-info-placeholder {
    font-size: 1.35rem;
    color: #999;
    line-height: 1.6;
    margin: 0;
    padding-top: 10px;
}
.map-info-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 10px;
    line-height: 1.3;
}
.map-info-desc {
    font-size: 1.35rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ── POI markers ── */
.poi-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    transition: transform .15s;
}
.poi-marker:hover {
    transform: translate(-50%, -50%) scale(1.3);
    z-index: 20;
}
.poi-dot {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.35);
    transition: transform .15s;
}

/* POI type colors */
.poi-avis       .poi-dot { background: #c40018; }
.poi-touristique .poi-dot { background: #1a6fa8; }
.poi-restaurant .poi-dot { background: #e67c00; }
.poi-hôtel      .poi-dot { background: #7b3fa0; }

/* Active state */
.poi-active .poi-dot {
    transform: scale(1.5);
    box-shadow: 0 0 0 4px rgba(196,0,24,.3);
}
.poi-avis.poi-active       .poi-dot { box-shadow: 0 0 0 5px rgba(196,0,24,.3); }
.poi-touristique.poi-active .poi-dot { box-shadow: 0 0 0 5px rgba(26,111,168,.3); }
.poi-restaurant.poi-active .poi-dot { box-shadow: 0 0 0 5px rgba(230,124,0,.3); }
.poi-hôtel.poi-active      .poi-dot { box-shadow: 0 0 0 5px rgba(123,63,160,.3); }

/* ── Activity / restaurant cards grid ── */
.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 10px;
}
.about-card {
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e8e8e8;
    padding: 24px 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,.05);
    transition: box-shadow .2s;
}
.about-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,.09);
}
.about-card-icon {
    font-size: 2.8rem;
    margin-bottom: 10px;
    line-height: 1;
}
.about-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
}
.about-card-text {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.55;
    margin: 0;
}
.about-card--resto .about-card-title {
    color: #c40018;
}

/* ── Clickable card (blog) ── */
.about-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.about-card-link:hover,
.about-card-link:focus {
    text-decoration: none;
    color: inherit;
}
.about-card-link .about-card {
    cursor: pointer;
    height: 100%;
    position: relative;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.about-card-link:hover .about-card {
    transform: translateY(-3px);
    border-color: #c40018;
    box-shadow: 0 8px 22px rgba(196,0,24,.12);
}
.about-card-link:hover .about-card-title {
    color: #c40018;
}
.about-card-readmore {
    display: block;
    margin-top: 12px;
    color: #c40018;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .02em;
}

/* ── Incontournables list ── */
.about-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 10px;
}
.about-list-item {
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid #e8e8e8;
    padding: 18px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.about-list-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #1a6fa8;
    margin: 0 0 6px;
}
.about-list-text {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .about-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
    .map-layout { flex-direction: column; }
    #map-wrapper { flex: none; width: 100%; }
    #map-info { flex: none; width: 100%; min-height: auto; }
    .about-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .about-list { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .about-hero .heading { font-size: 2.2rem; }
    .about-hero .heading-text { font-size: 1.4rem; }
    .about-heading { font-size: 2rem; }
    .about-cards-grid { grid-template-columns: 1fr; gap: 12px; }
    .map-filters { gap: 6px; }
    .map-filter-btn { font-size: 1.15rem; padding: 6px 12px; }
    .map-zoom-controls { margin-top: 8px; }
}

/* ── Extrait du <style> inline de about_borabora.php (audit CSS 06/2026) ── */
  /* Tailles harmonisées avec assets/css/about.css :
 .about-heading 2.4rem · .about-subtext 1.5rem · .about-text 1.45rem
 .about-card-title 1.5rem · .about-card-text 1.3rem */
  .guide-section { padding-bottom: 0; }
  .guide-tldr {
background: linear-gradient(135deg, #f5f9fc 0%, #eaf3f9 100%);
border-left: 5px solid #1a6fa8;
border-radius: 8px;
padding: 24px 28px;
margin: 0 0 32px;
  }
  .guide-tldr-title { font-size: 1.5rem; font-weight: 700; color: #1a6fa8; margin: 0 0 10px; letter-spacing: .3px; }
  .guide-tldr-text { font-size: 1.45rem; line-height: 1.75; color: #333; margin: 0; }
  .guide-toc {
background: #fff;
border: 1px solid #e3e8ee;
border-radius: 8px;
padding: 18px 24px;
margin: 0 0 32px;
font-size: 1.3rem;
  }
  .guide-toc strong { color: #1a6fa8; display: inline-block; margin-right: 10px; font-size: 1.35rem; }
  .guide-toc ul { list-style: none; padding: 8px 0 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 22px; }
  .guide-toc a { color: #555; text-decoration: none; border-bottom: 1px dashed #bbb; }
  .guide-toc a:hover { color: #1a6fa8; border-bottom-color: #1a6fa8; }
  .guide-block { margin: 0 0 42px; }
  .guide-block h3 {
font-size: 2rem;
color: #1a3550;
margin: 0 0 16px;
padding-bottom: 10px;
border-bottom: 2px solid #f0f3f6;
font-weight: 700;
line-height: 1.3;
  }
  .guide-block p { font-size: 1.45rem; line-height: 1.75; color: #444; margin: 0 0 14px; }
  .guide-list { padding-left: 22px; margin: 10px 0 18px; }
  .guide-list li { line-height: 1.75; color: #444; margin-bottom: 8px; font-size: 1.4rem; }
  .guide-list li strong { color: #1a3550; }
  .guide-table-wrap { overflow-x: auto; margin: 16px 0; }
  .guide-table { width: 100%; border-collapse: collapse; font-size: 1.3rem; }
  .guide-table th, .guide-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid #ebeef2; line-height: 1.5; }
  .guide-table th { background: #f8fafc; color: #1a3550; font-weight: 700; border-bottom: 2px solid #d4dde6; font-size: 1.3rem; }
  .guide-table tr:hover td { background: #fbfcfd; }
  .guide-cta {
display: inline-block;
margin-top: 14px;
padding: 12px 26px;
background: #1a6fa8;
color: #fff !important;
border-radius: 4px;
text-decoration: none;
font-weight: 600;
font-size: 1.3rem;
  }
  .guide-cta:hover { background: #155a89; }
  @media (max-width: 600px) {
.guide-tldr, .guide-toc { padding: 16px 18px; }
.guide-tldr-text { font-size: 1.3rem; }
.guide-block h3 { font-size: 1.7rem; }
.guide-block p, .guide-list li { font-size: 1.25rem; }
.guide-table, .guide-table th { font-size: 1.15rem; }
.guide-table th, .guide-table td { padding: 8px 10px; }
  }
