﻿/* =========================================================
   SHADEVO MUSIQUE RECORD â€” Feuille de style principale
   IdentitÃ© : bleu clair (dominant) Â· rouge (accent) Â· noir/blanc
   ========================================================= */

:root {
    --bleu: #4fc3f7;
    --bleu-2: #0277bd;
    --bleu-3: #0288d1;
    --bleu-fonce: #0277bd;
    --bleu-tres-fonce: #01579b;
    --rouge: #e53935;
    --rouge-2: #ff5252;
    --rouge-fonce: #c62828;
    --noir: #f4f8fd;
    --noir-2: #ffffff;
    --noir-3: #eef2f7;
    --blanc: #12202f;
    --texte-muted: #5b6b7c;
    --border: rgba(18, 32, 47, 0.1);
    --radius: 16px;
    --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--noir);
    color: var(--blanc);
    line-height: 1.7;
    overflow-x: hidden;
}

a { color: var(--bleu-2); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--bleu); }

.text-muted-2 { color: var(--texte-muted); }

section { position: relative; }

/* ---------- Boutons ---------- */

.btn-smr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 1.9rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid transparent;
    transition: all .25s ease;
    cursor: pointer;
}

.btn-smr-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    color: #fff;
    background: linear-gradient(135deg, var(--rouge), var(--rouge-fonce));
    border: none;
    box-shadow: 0 8px 22px rgba(229, 57, 53, .35);
    transition: all .25s ease;
    cursor: pointer;
}
.btn-smr-cta:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(229, 57, 53, .5); }

.btn-smr-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 1.9rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    color: #fff;
    background: linear-gradient(135deg, var(--bleu-3), var(--bleu-tres-fonce));
    border: none;
    box-shadow: 0 8px 22px rgba(2,136,209,.3);
    transition: all .25s ease;
}
.btn-smr-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(2,136,209,.4); }

.btn-smr-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 1.9rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    color: var(--bleu-2);
    border: 2px solid rgba(79, 195, 247, .5);
    background: transparent;
    transition: all .25s ease;
}
.btn-smr-outline:hover { background: rgba(79, 195, 247, .1); color: var(--bleu-2); border-color: var(--bleu); }

.btn-smr-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 1.9rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    color: var(--blanc);
    border: 2px solid var(--border);
    background: rgba(18,32,47,.04);
    transition: all .25s ease;
}
.btn-smr-ghost:hover { background: rgba(18,32,47,.08); color: var(--bleu-fonce); }

/* ---------- Navbar ---------- */

.smr-navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(12px);
    padding: .7rem 0;
    border-bottom: 1px solid var(--border);
    transition: background .3s ease, box-shadow .3s ease;
    z-index: 1030;
}
.smr-navbar.scrolled { background: rgba(255, 255, 255, .98); box-shadow: 0 6px 24px rgba(18, 32, 47, .08); }

.brand-logo { height: 46px; width: 46px; object-fit: contain; border-radius: 8px; }
.smr-navbar .brand-logo { height: 60px; width: 60px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; margin-left: .5rem; min-width: 0; }
.brand-text strong { font-size: 1.05rem; font-weight: 800; color: var(--bleu-2); letter-spacing: .5px; }
.brand-text small { font-size: .62rem; color: var(--texte-muted); letter-spacing: .5px; }

.smr-navbar .nav-link {
    color: #33465c;
    font-weight: 500;
    font-size: .92rem;
    padding: .55rem .85rem !important;
    position: relative;
}
.smr-navbar .nav-link:hover,
.smr-navbar .nav-link.active { color: var(--bleu-fonce); }
.smr-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: .25rem;
    left: .85rem;
    right: .85rem;
    height: 2px;
    border-radius: 2px;
    background: var(--rouge);
}

.smr-navbar .navbar-toggler { border-color: rgba(18, 32, 47, .2); }
.smr-navbar .navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(2, 136, 209, .15); }
.smr-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2818,32,47,0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.smr-navbar .dropdown-menu.smr-dropdown {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(18, 32, 47, .12);
    padding: .5rem;
    margin-top: .55rem;
}
.smr-navbar .dropdown-item {
    border-radius: 8px;
    color: #33465c;
    font-weight: 500;
    font-size: .9rem;
    padding: .55rem 1rem;
}
.smr-navbar .dropdown-item:hover,
.smr-navbar .dropdown-item.active {
    background: rgba(2, 136, 209, .08);
    color: var(--bleu-fonce);
}

@media (max-width: 991.98px) {
    .smr-navbar .dropdown-menu.smr-dropdown {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 .6rem;
        margin-top: 0;
    }
    .smr-navbar .dropdown-item { padding: .5rem .6rem; color: #5b6b7c; }
    .smr-navbar .dropdown-item:hover,
    .smr-navbar .dropdown-item.active { background: rgba(2, 136, 209, .06); color: var(--bleu-fonce); }
}

@media (max-width: 991.98px) {
    .smr-navbar .navbar-collapse {
        background: var(--noir-2);
        margin: .5rem -1rem -1rem;
        padding: .5rem 1.5rem 1rem;
        border-radius: 0 0 16px 16px;
        border: 1px solid var(--border);
    }
    .smr-navbar .nav-link { padding: .6rem 0 !important; }
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(1200px 600px at 85% -10%, rgba(2,136,209,.16), transparent 60%),
        radial-gradient(900px 500px at 10% 110%, rgba(229,57,53,.08), transparent 60%),
        linear-gradient(180deg, #f4f8fd 0%, #eaf4fc 60%, #f4f8fd 100%);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(2,136,209,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(2,136,209,.07) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(700px 400px at 50% 40%, #000 30%, transparent);
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, var(--noir) 100%);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem 1.1rem;
    border-radius: 50px;
    background: rgba(79,195,247,.12);
    border: 1px solid rgba(79,195,247,.35);
    color: var(--bleu-2);
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.5px;
    margin: 1.2rem 0 .6rem;
}
.hero h1 .grad {
    background: linear-gradient(90deg, var(--bleu-fonce), var(--bleu-3), var(--bleu-fonce));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero h1 .grad-red {
    background: linear-gradient(90deg, var(--rouge-2), var(--rouge));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero .subtitle { font-size: 1.05rem; color: var(--texte-muted); max-width: 560px; margin: 0 auto 2rem; }

/* Equalizer animation */
.eq {
    display: inline-flex;
    align-items: flex-end;
    gap: 4px;
    height: 26px;
    margin-left: 8px;
}
.eq span {
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--bleu-2), var(--bleu-fonce));
    animation: eq-bounce 1s ease-in-out infinite;
}
.eq span:nth-child(1){ animation-delay: 0s; }
.eq span:nth-child(2){ animation-delay: .15s; }
.eq span:nth-child(3){ animation-delay: .3s; }
.eq span:nth-child(4){ animation-delay: .45s; }
.eq span:nth-child(5){ animation-delay: .6s; }
@keyframes eq-bounce {
    0%, 100% { height: 10px; }
    50% { height: 26px; }
}

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--texte-muted);
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.hero-scroll i { animation: bounce-down 1.6s infinite; font-size: 1.1rem; }
@keyframes bounce-down { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ---------- Sections ---------- */

.section { padding: 5.5rem 0; position: relative; }
.section-dark { background: var(--noir); }
.section-dark-2 { background: var(--noir-2); }
.section-light {
    background: #f4f8fd;
    color: #22303f;
}
.section-light .text-muted-2,
.section-light .lead,
.section-light p { color: #5b6b7c; }
.section-light .section-title { color: #12202f; }

.section-head { max-width: 760px; margin: 0 auto 3.2rem; text-align: center; }
.section-kicker {
    display: inline-block;
    font-size: .75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--bleu-fonce);
    font-weight: 700;
    margin-bottom: .6rem;
}
.section-light .section-kicker { color: var(--bleu-fonce); }
.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--blanc);
    line-height: 1.2;
    margin-bottom: .8rem;
}
.section-sub { color: var(--texte-muted); font-size: 1rem; }

.divider-line {
    width: 70px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--rouge), var(--rouge-2));
    margin: 1rem auto 0;
}

/* ---------- Cards ---------- */

.smr-card {
    background: var(--noir-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.6rem;
    height: 100%;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.smr-card:hover { transform: translateY(-6px); border-color: rgba(79,195,247,.4); box-shadow: 0 18px 40px rgba(18,32,47,.12); }
.smr-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bleu), var(--rouge));
    opacity: 0;
    transition: opacity .3s ease;
}
.smr-card:hover::before { opacity: 1; }

.card-icon {
    width: 62px; height: 62px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.9rem;
    background: rgba(79,195,247,.12);
    color: var(--bleu-2);
    border: 1px solid rgba(79,195,247,.3);
    margin-bottom: 1.1rem;
}
.card-title { font-size: 1.2rem; font-weight: 700; margin-bottom: .6rem; }
.card-desc { color: var(--texte-muted); font-size: .93rem; }

/* Light cards */
.section-light .smr-card {
    background: #fff;
    border: 1px solid #e4ecf5;
    box-shadow: 0 8px 24px rgba(20,40,60,.06);
}
.section-light .smr-card:hover { border-color: var(--bleu-3); }
.section-light .card-desc { color: #5b6b7c; }
.section-light .card-icon { background: rgba(2,136,209,.08); color: var(--bleu-fonce); border-color: rgba(2,136,209,.2); }

/* ---------- Image cards (artistes, rÃ©alisations, actualitÃ©s) ---------- */

.img-card {
    background: var(--noir-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
}
.img-card:hover { transform: translateY(-6px); border-color: rgba(79,195,247,.4); box-shadow: 0 18px 40px rgba(18,32,47,.12); }
.img-card .card-img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.img-card .card-body { padding: 1.3rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.img-card .card-body h3 { font-size: 1.1rem; font-weight: 700; }
.img-card .card-body p { color: var(--texte-muted); font-size: .9rem; }

.badge-cat {
    display: inline-block;
    padding: .3rem .8rem;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .5px;
    background: rgba(79,195,247,.14);
    color: var(--bleu-2);
    border: 1px solid rgba(79,195,247,.3);
}
.badge-cat-red { background: rgba(229,57,53,.14); color: var(--rouge-2); border-color: rgba(229,57,53,.35); }

/* ---------- Studio page ---------- */

.studio-hero {
    padding: 6rem 0 4rem;
    background:
        radial-gradient(800px 400px at 80% 0%, rgba(79,195,247,.2), transparent 60%),
        linear-gradient(180deg, var(--noir-2), var(--noir));
}
.studio-visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.studio-visual img { width: 100%; height: 420px; object-fit: cover; display: block; }

.feat-item { display: flex; gap: 1rem; align-items: flex-start; }
.feat-item .feat-icon {
    flex: 0 0 52px; height: 52px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    background: rgba(79,195,247,.12);
    color: var(--bleu-2);
    border: 1px solid rgba(79,195,247,.3);
}
.feat-item h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: .25rem; }
.feat-item p { color: var(--texte-muted); font-size: .92rem; margin: 0; }

/* ---------- Tarifs ---------- */

.price-card {
    background: var(--noir-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    height: 100%;
    text-align: center;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(79,195,247,.4); box-shadow: 0 18px 40px rgba(18,32,47,.12); }
.price-card.featured {
    border-color: rgba(229,57,53,.5);
    background: linear-gradient(180deg, rgba(229,57,53,.08), var(--noir-2));
}
.price-card .price-name { font-size: .8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--texte-muted); font-weight: 600; }
.price-card .price-value {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    margin: .8rem 0 .5rem;
    color: var(--bleu-2);
}
.price-card.featured .price-value { color: var(--rouge); }
.price-card .price-desc { color: var(--texte-muted); font-size: .9rem; margin-bottom: 1.4rem; }

/* ---------- Galerie ---------- */

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .gallery-caption {
    position: absolute; inset: auto 0 0 0;
    padding: 2rem 1rem .8rem;
    background: linear-gradient(transparent, rgba(0,0,0,.8));
    color: #fff; font-size: .85rem; font-weight: 600;
    opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ---------- Formulaires ---------- */

.form-control-smr, .form-select-smr {
    background: var(--noir-2);
    border: 1px solid var(--border);
    color: var(--blanc);
    border-radius: 10px;
    padding: .75rem 1rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.form-control-smr:focus, .form-select-smr:focus {
    background: var(--noir-2);
    color: var(--blanc);
    border-color: var(--bleu-3);
    box-shadow: 0 0 0 .2rem rgba(79,195,247,.15);
}
.form-control-smr::placeholder { color: #66768a; }
.form-label-smr { font-weight: 600; font-size: .9rem; color: var(--bleu-2); margin-bottom: .4rem; }

select.form-select-smr option { background: var(--noir-2); color: var(--blanc); }

/* ---------- Alertes ---------- */
.alert-smr { border-radius: 12px; border: 1px solid var(--border); }
.alert-success-smr { background: rgba(46, 160, 67, .1); border-color: rgba(46,160,67,.35); color: #1e7d34; }
.alert-danger-smr { background: rgba(229,57,53,.08); border-color: rgba(229,57,53,.35); color: #b02420; }
.alert-info-smr { background: rgba(2,136,209,.08); border-color: rgba(2,136,209,.35); color: var(--bleu-fonce); }

/* ---------- Contact ---------- */

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 1.2rem;
    background: var(--noir-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 1rem;
}
.contact-info-item .ci-icon {
    flex: 0 0 46px; height: 46px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    background: rgba(79,195,247,.12);
    color: var(--bleu-2);
}
.contact-info-item h5 { font-size: .8rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--texte-muted); margin-bottom: .15rem; }
.contact-info-item a { color: var(--blanc); font-weight: 600; }
.contact-info-item a:hover { color: var(--bleu-fonce); }

/* ---------- Footer ---------- */

.smr-footer {
    background: var(--noir-3);
    border-top: 1px solid var(--border);
    padding: 4rem 0 0;
}
.footer-title { font-size: 1rem; font-weight: 700; color: var(--bleu-2); margin-bottom: 1.1rem; letter-spacing: 1px; text-transform: uppercase; }
.footer-contact, .footer-links { list-style: none; padding: 0; margin: 0; }
.footer-contact li { margin-bottom: .7rem; color: var(--texte-muted); }
.footer-contact i { color: var(--bleu-3); margin-right: .6rem; }
.footer-contact a { color: var(--texte-muted); }
.footer-contact a:hover { color: var(--bleu-2); }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: var(--texte-muted); font-size: .93rem; }
.footer-links a:hover { color: var(--bleu-2); padding-left: 4px; }

.social-link {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    background: var(--noir-3);
    border: 1px solid var(--border);
    color: var(--texte-muted);
    transition: all .25s ease;
}
.social-link:hover { background: var(--bleu-fonce); color: #fff; border-color: var(--bleu-fonce); transform: translateY(-2px); }

.footer-bottom {
    margin-top: 3rem;
    padding: 1.4rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--texte-muted);
    font-size: .85rem;
}
.footer-bottom p { margin: 0; }

/* ---------- Page 404 ---------- */

.page-404 {
    min-height: 80vh;
    display: flex; align-items: center; justify-content: center; text-align: center;
    background:
        radial-gradient(900px 500px at 50% 0%, rgba(2,136,209,.1), transparent 60%),
        linear-gradient(180deg, #ffffff, var(--noir));
}
.page-404 .code { font-size: clamp(6rem, 18vw, 11rem); font-weight: 800; line-height: 1; color: var(--bleu-2); text-shadow: 0 0 60px rgba(79,195,247,.35); }
.page-404 h1 { font-size: 1.6rem; font-weight: 700; margin: 1rem 0 .5rem; }

/* ---------- Page title band ---------- */

.page-hero {
    padding: 6.5rem 0 4rem;
    background:
        radial-gradient(700px 350px at 15% 0%, rgba(2,136,209,.1), transparent 60%),
        radial-gradient(500px 300px at 90% 20%, rgba(229,57,53,.06), transparent 60%),
        linear-gradient(180deg, #ffffff, #f4f8fd);
    border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; }
.page-hero .breadcrumb-smr { color: var(--texte-muted); font-size: .85rem; }
.page-hero .breadcrumb-smr a { color: var(--bleu-2); }

/* ---------- Article ---------- */

.article-hero {
    padding: 5rem 0 2.5rem;
    background: linear-gradient(180deg, #ffffff, #f4f8fd);
    border-bottom: 1px solid var(--border);
}
.article-meta { display: flex; flex-wrap: wrap; gap: 1rem; color: var(--texte-muted); font-size: .88rem; }
.article-meta i { color: var(--bleu-fonce); margin-right: .35rem; }

.article-content { color: #33465c; font-size: 1rem; }
.article-content h2, .article-content h3 { color: #12202f; margin-top: 1.8rem; }
.article-content img { max-width: 100%; border-radius: 14px; margin: 1rem 0; }
.article-content p { margin-bottom: 1.1rem; }

/* ---------- Timeline (histoire) ---------- */

.timeline { position: relative; padding: 2rem 0; }
.timeline::before {
    content: '';
    position: absolute;
    left: 24px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--bleu-3), var(--rouge));
}
.tl-item { position: relative; padding: 0 0 2.5rem 72px; }
.tl-item::before {
    content: '';
    position: absolute;
    left: 16px; top: 4px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--noir);
    border: 4px solid var(--bleu-3);
    box-shadow: 0 0 0 4px rgba(79,195,247,.15);
}
.tl-year { color: var(--rouge-2); font-weight: 800; font-size: .9rem; letter-spacing: 2px; }
.tl-item h4 { font-weight: 700; font-size: 1.15rem; margin: .3rem 0 .4rem; }
.tl-item p { color: var(--texte-muted); font-size: .93rem; margin: 0; }

/* ---------- Animations ---------- */

.fade-up { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.float-anim { animation: float 5s ease-in-out infinite; }

/* ---------- Divers ---------- */

.shadow-soft { box-shadow: 0 18px 44px rgba(18,32,47,.12); }
.rounded-16 { border-radius: var(--radius); }

.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li { padding-left: 1.9rem; position: relative; margin-bottom: .7rem; color: var(--texte-muted); }
.list-check li::before {
    content: 'âœ“';
    position: absolute; left: 0; top: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(79,195,247,.15);
    color: var(--bleu-2);
    font-size: .7rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(79,195,247,.3);
}

/* Toast custom */
.smr-toast-wrap { position: fixed; top: 90px; right: 20px; z-index: 2000; display: flex; flex-direction: column; gap: .6rem; max-width: 360px; }
.smr-toast {
    padding: .9rem 1.1rem;
    border-radius: 12px;
    font-size: .9rem;
    box-shadow: 0 10px 30px rgba(18,32,47,.12);
    animation: toast-in .3s ease;
    border: 1px solid;
}
.smr-toast.success { background: rgba(20,70,35,.95); border-color: rgba(46,160,67,.5); color: #b6f0c8; }
.smr-toast.error { background: rgba(70,20,20,.95); border-color: rgba(229,57,53,.5); color: #ffc9c7; }
@keyframes toast-in { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: none; } }

/* ---------- Collaborations (artistes) ---------- */

.collab-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.collab-card {
    background: var(--noir-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.2rem 1rem;
    text-align: center;
    transition: all .25s ease;
    display: flex; flex-direction: column; align-items: center; gap: .15rem;
    min-width: 0;
}
.collab-card:hover { transform: translateY(-4px); border-color: rgba(79,195,247,.4); }
.collab-card .collab-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    background: rgba(79,195,247,.12); color: var(--bleu-2);
    border: 1px solid rgba(79,195,247,.3);
    margin-bottom: .4rem;
}
.collab-card strong { font-size: .95rem; overflow-wrap: break-word; }
.collab-card span { font-size: .78rem; color: var(--texte-muted); }

.section-light .collab-card {
    background: #fff;
    border: 1px solid #e4ecf5;
    box-shadow: 0 6px 18px rgba(20,40,60,.05);
}
.section-light .collab-card:hover { border-color: var(--bleu-3); }
.section-light .collab-card strong { color: #12202f; }
.section-light .collab-card span { color: #5b6b7c; }
.section-light .collab-card .collab-icon { background: rgba(2,136,209,.08); color: var(--bleu-fonce); border-color: rgba(2,136,209,.2); }

/* ---------- Lightbox ---------- */

.lightbox {
    position: fixed; inset: 0; z-index: 3000;
    background: rgba(0,0,0,.92);
    display: flex; align-items: center; justify-content: center;
    padding: 2rem;
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 12px; }
.lightbox .lb-close {
    position: absolute; top: 22px; right: 26px;
    font-size: 1.8rem; color: #fff; background: none; border: none; cursor: pointer;
}
.lightbox .lb-caption {
    position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
    color: #fff; font-size: .95rem; background: rgba(0,0,0,.5); padding: .4rem 1rem; border-radius: 30px;
}

/* Back to top */
.back-to-top {
    position: fixed; bottom: 24px; right: 24px;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rouge), var(--rouge-fonce));
    color: #fff; border: none;
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: all .3s ease;
    z-index: 1050;
    box-shadow: 0 8px 22px rgba(229,57,53,.35);
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }

/* Responsive small */
@media (max-width: 575.98px) {
    .section { padding: 4rem 0; }
    .btn-smr, .btn-smr-outline, .btn-smr-primary, .btn-smr-ghost { width: 100%; }
    .hero { min-height: 88vh; }

    /* Navbar : logo en image uniquement, texte masquÃ© (Ã©vite le dÃ©bordement) */
    .smr-navbar .navbar-brand { min-width: 0; }
    .smr-navbar .brand-text { display: none; }
    .smr-navbar .brand-logo { height: 54px; width: 54px; }
    .smr-navbar .navbar-brand { padding-left: 0; }

    /* EmpÃªcher tout dÃ©bordement horizontal de texte */
    body { overflow-x: hidden; }
    h1, h2, h3, h4, h5, p, span, a, li, small, .card-desc, .price-value,
    .section-title, .hero-badge, .subtitle, .breadcrumb-smr {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .hero-badge {
        font-size: .66rem;
        letter-spacing: 1.5px;
        padding: .4rem .8rem;
        text-align: center;
        white-space: normal;
    }
    .hero .subtitle { font-size: .95rem; }

    .page-hero { padding: 5rem 0 3rem; }
    .page-hero h1 { font-size: 1.9rem; }

    /* Flex : laisser le texte rÃ©trÃ©cir au lieu de dÃ©border */
    .contact-info-item, .feat-item, .article-meta { min-width: 0; }
    .contact-info-item > div, .feat-item > div { min-width: 0; }

    .article-meta { gap: .6rem; font-size: .8rem; }
    .card-title { font-size: 1.05rem; }
    .price-value { font-size: 1.5rem; }
    .btn-smr-cta, .btn-smr-outline, .btn-smr-ghost { white-space: normal; padding: .7rem 1.1rem; font-size: .85rem; }
}

/* PrÃ©venir le dÃ©bordement des textes longs dans les cartes flex */
.img-card .card-body, .smr-card, .price-card { min-width: 0; }
.card-desc { overflow-wrap: break-word; }
