/* ═══════════════════════════════════════════════════════
   RIAD ES-SAADI — Variante "MÉDINA"
   Style : riad traditionnel marrakchi
   Caractéristiques : or chaud, terre cuite, motifs subtils
═══════════════════════════════════════════════════════ */

/* Hero : motif géométrique discret en overlay */
.riad-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"%3E%3Cpath d="M30 5l8 14h14l-11 9 4 14-15-9-15 9 4-14-11-9h14z" fill="none" stroke="%23ffffff" stroke-width="0.4" opacity="0.15"/%3E%3C/svg%3E');
    background-size: 80px;
    opacity: 0.5;
    pointer-events: none;
}

/* Eyebrow en italique avec petits tirets décoratifs */
.riad-eyebrow {
    position: relative;
    padding: 0 24px;
}
.riad-eyebrow::before,
.riad-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 16px;
    height: 1px;
    background: var(--riad-primary);
    opacity: 0.5;
}
.riad-eyebrow::before { left: 0; }
.riad-eyebrow::after { right: 0; }

/* Intro : ajouter une fleur de lys décorative en filigrane */
.riad-intro {
    position: relative;
}
.riad-intro::before {
    content: '✦';
    display: block;
    text-align: center;
    color: var(--riad-primary);
    font-size: 24px;
    margin-bottom: 32px;
    opacity: 0.6;
}

/* Cards chambres : bordure décorative en haut */
.riad-room-card {
    position: relative;
}
.riad-room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--riad-primary) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 2;
}
.riad-room-card:hover::before {
    opacity: 1;
}

/* Bouton hero : style "ornement" arabesque */
.riad-btn--hero {
    border-radius: 0;
    position: relative;
    overflow: visible;
}
.riad-btn--hero::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(255,255,255,0.3);
    pointer-events: none;
}

/* Témoignages : guillemets décoratifs en filigrane */
.riad-testimonial {
    position: relative;
}
.riad-testimonial::before {
    content: '"';
    position: absolute;
    top: 8px;
    right: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    color: var(--riad-primary);
    opacity: 0.15;
    line-height: 1;
    pointer-events: none;
}

/* Formulaire : bordures plus prononcées */
.riad-booking__form {
    border: 1px solid var(--riad-border);
    box-shadow: 0 1px 0 var(--riad-primary), 0 2px 0 var(--riad-bg);
}

/* Footer : ajout d'une bordure dorée en haut */
.riad-footer {
    position: relative;
    border-top: 3px solid var(--riad-primary);
}
.riad-footer::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.2);
}
