/* =====================================================
   Hi Beirut Marrakech — Page Notre Histoire
   ===================================================== */

/* ---------- Piliers (3 valeurs) ---------- */
.pillar-card {
    position: relative;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(17, 61, 27, 0.05);
    transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8960C;
    transition: transform 0.4s ease;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
}

/* ---------- Stats ---------- */
.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    background: linear-gradient(135deg, #D4AF37, #B8960C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7A7A7A;
    font-weight: 600;
}

/* ---------- Timeline verticale ---------- */
.timeline-item {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 2.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -9px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37, #B8960C);
    box-shadow: 0 0 0 4px #FDFBF7, 0 0 0 5px rgba(212, 175, 55, 0.3);
}
