:root {
    --coton: #FFF4F5;
    --marine: #344471;
    --tangerine: #E08653;
    --ciel: #BED3DC;

    --font-title: 'Gopher', sans-serif;
    --font-text: 'Source Sans Pro', sans-serif;
}
body {
    background-color: var(--coton);
    color: var(--marine);
    font-family: var(--font-text);
}
h1, h2, h3, h4 {
    font-family: var(--font-title);
    color: var(--marine);
}
.btn-main {
    background: var(--tangerine);
    color: white;
}
/* CARD PREMIUM */
.premium-card {
    background: var(--coton);
    border-radius: 22px;
    border: 1px solid var(--ciel);
    position: relative;
    overflow: hidden;

    /* Effet papier doux */
    background-image: radial-gradient(circle at top left, rgba(255,255,255,0.7), rgba(255,244,245,0.9));

    /* Ombre premium */
    box-shadow: 0 12px 28px rgba(0,0,0,0.08), 
                0 4px 12px rgba(0,0,0,0.05);
}

/* Bordure Tangerine ultra fine */
.premium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 1px;
    background: linear-gradient(135deg, var(--tangerine), var(--ciel));

    /* Masque standard */
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    /* Masque WebKit */
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    /* Mode de composition */
    mask-composite: exclude;
    -webkit-mask-composite: xor;
}


/* TITRE PREMIUM */
.premium-title {
    font-family: var(--font-title);
    color: var(--marine);
    font-size: 2.2rem;
    font-weight: 600;
}

/* TEXTE PREMIUM */
.premium-text {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--marine);
    margin-bottom: 1rem;
}

/* IMAGE PREMIUM */
.premium-image-wrapper {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: inset 0 0 12px rgba(0,0,0,0.08),
                0 8px 20px rgba(0,0,0,0.08);
}

.premium-image {
    border-radius: 18px;
    transition: transform 0.4s ease;
}

.premium-image:hover {
    transform: scale(1.03);
}

/* TITRES */
.premium-subtitle {
    font-family: var(--font-title);
    color: var(--tangerine);
    font-size: 1.5rem;
    font-weight: 600;
}

/* LIGNES DE PRESTATIONS */
.prest-line {
    padding: 10px 0;
    border-bottom: 1px solid rgba(190, 211, 220, 0.5);
    font-size: 1.1rem;
    color: var(--marine);
}

.prest-line strong {
    color: var(--tangerine);
}

/* NOTE */
.premium-note {
    font-size: 0.95rem;
    color: var(--marine);
    opacity: 0.8;
}
/* ACCORDÉON PREMIUM */
.premium-accordion-item {
    background: var(--coton);
    border-radius: 16px;
    margin-bottom: 18px;
    border: 1px solid var(--ciel);
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.premium-accordion-btn {
    background: var(--coton);
    font-family: var(--font-title);
    color: var(--marine);
    font-size: 1.3rem;
    padding: 18px;
    border: none;
}

.premium-accordion-btn:not(.collapsed) {
    background: var(--tangerine);
    color: white;
}

.premium-accordion-btn:focus {
    box-shadow: none;
}

.accordion-body {
    background: white;
    padding: 25px;
    border-top: 1px solid var(--ciel);
}
/* BLOCS TECHNOLOGIES / MARQUES */
.tech-block {
    margin-bottom: 1.5rem;
}

.tech-block:last-child {
    margin-bottom: 0;
}

#marques .premium-card {
    min-height: 100%;
}

.nav-link i {
    color: var(--tangerine);
    font-size: 1.1rem;
    transition: 0.3s ease;
}

.nav-link:hover i {
    transform: translateY(-2px);
    color: var(--marine);
}
.google-rating {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--tangerine);
}

.stars {
    color: var(--tangerine);
    font-size: 1.1rem;
}

.google-reviews .premium-card {
    min-height: 180px;
}
/* Overlay centré sur le carrousel */
.carousel-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20; /* au-dessus des images */
    display: flex;
    align-items: center;
    gap: 40px; /* espace entre les deux logos */
    pointer-events: none; /* clics passent à travers */
}

/* Style des logos */
.overlay-logo {
    height: 120px; /* ajuste selon ton design */
    width: auto;
    opacity: 0.9; /* léger effet premium */
}

/* Responsive */
@media (max-width: 768px) {
    .overlay-logo {
        height: 80px;
    }
    .carousel-overlay {
        gap: 20px;
    }
}
/* Couleur du theme */
.tangerine {
    color: var(--tangerine) !important;
}
/* Ifram Google Maps */
.map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px; /* optionnel, pour un rendu premium */
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* MENU PORTAIL PREMIUM */
.portal-menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--coton);
    padding: 12px 0;
    border-bottom: 1px solid var(--tangerine);
    gap: 20px;
}

/* Boutons horizontaux */
.portal-menu .menu-item {
    display: flex;
    flex-direction: row; /* <-- icône à côté du texte */
    align-items: center;
    gap: 8px; /* espace entre icône et texte */
    text-decoration: none;
    color: var(--tangerine);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    padding: 6px 10px; /* petit padding premium */
    border-radius: 6px; /* arrondi premium */
}

/* Icônes */
.portal-menu .menu-item i {
    font-size: 1.2rem;
}

/* Hover */
.portal-menu .menu-item:hover {
    color: var(--marine);
    background: rgba(0,0,0,0.05); /* léger fond premium */
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
    .portal-menu {
        overflow-x: auto;
        white-space: nowrap;
        padding: 10px;
    }

    .portal-menu .menu-item {
        display: inline-flex;
        margin: 0 12px;
    }
}
