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