:root {
    --bg: #f7f3ef;
    /* fond très clair, légèrement crème */
    --ink: #161616;
    /* texte principal */
    --muted: #6b6b6b;
    /* texte secondaire */
    --card: #ffffff;
    /* surface cartes */
    --accent: #c00983;
    /* orange accent */
    --accent-2: #ff00a8;
    /* orange secondaire */
    --shadow: 0 10px 30px rgba(0, 0, 0, .08);
    --radius: 18px;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
}

/* ====== NAVBAR ====== */
.navbar {
    --bs-navbar-padding-y: .9rem;
    background: transparent;
    transition: box-shadow .3s ease, background-color .3s ease;
    width: 90%;
    margin: 0 auto;
}

.navbar.stuck {

    backdrop-filter: blur(8px);

}

.navbar-brand {
    font-weight: 800;
    letter-spacing: .2px;
}

.navbar-brand .dash {
    opacity: .7;
    margin-right: .25rem;
}

.nav-link {
    font-weight: 600;
    color: #3a3a3a;
}

.nav-link:hover {
    color: var(--ink);
}

.nav-link.active {
    color: var(--accent);
}

/* ====== HERO BANNER ====== */
.hero {
    position: relative;
    min-height: 220px;
    background: #b2b2b2 url('/assets/img/c22c23_03ff7327b14c4b5a9d0fd84f3ad13f99~mv2_d_3008_1703_s_2.avif') center/cover no-repeat fixed;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
}

.hero::after {
    /* voile sombre */
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .55));
}

.hero .container {
    position: relative;
    z-index: 1;
}

.eyebrow {
    position: relative;
    display: inline-block;
    font-weight: 900;
    font-size: clamp(18px, 4vw, 36px);
    line-height: 1.05;
    letter-spacing: .5px;
    transform: translateY(8px);
}

/* Pinceau orange derrière le mot "Podcast" */
.eyebrow::before {
    content: "";
    position: absolute;
    inset: auto -14px 4px -14px;
    height: 1.15em;
    z-index: -1;
    background: radial-gradient(120% 180% at 10% 90%, var(--accent-2) 0%, var(--accent) 55%, #c00983 100%);
    transform: rotate(-2.5deg);
    box-shadow: 0 10px 25px rgba(255, 106, 0, .35);
    filter: saturate(1.1) contrast(1.05);
}

/* Petite texture de poussière/chalk au-dessus */
.hero .noise {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .18;
    mix-blend-mode: screen;
    background-image: url('https://images.unsplash.com/photo-1520975922161-5487a6c78c84?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    filter: grayscale(1) brightness(1.2);
}

/* ====== CONTENT WRAP ====== */
.wrap {
    position: relative;
    margin-top: -70px;
    /* chevauche la bannière */
}

.podcast-card {
    background: var(--bg);


    overflow: hidden;
    padding: clamp(18px, 3vw, 28px);
}

.cover {
    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;
    background: linear-gradient(135deg, #ff7f2e, #ff5a00);
    display: grid;
    place-items: center;
    position: relative;

}

.cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cover .stamp {
  position: absolute;
  left: 8%;
  bottom: 8%;
  /* pas de right ! */
}

.cover .stamp .label {
  display: inline; /* inline pour casser par ligne */
  background: #c00983; /* bleu translucide comme ton image 2 */
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  font-size: clamp(13px, 1.6vw, 22px);
  line-height: 1.1;
  text-shadow: 0 6px 16px rgba(0,0,0,.25);

  /* pour que le fond suive CHAQUE ligne */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;

  padding: 0 .1em;   /* marge horizontale par ligne */

}



.title {
    font-size: clamp(34px, 5.5vw, 60px);
    font-weight: 900;
    letter-spacing: .2px;
}

.subtitle {
    color: var(--muted);
    font-weight: 700;
}

.lead-copy {
    color: #3f3f3f;
    max-width: 1000px;
}

/* ====== Social bar ====== */
.socials {
    position: fixed;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 50;
}

.socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
    background: #101010;
    color: #fff;
    opacity: .92;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, opacity .2s ease;
}

.socials a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
    background: #1a1a1a;
    opacity: 1;
}

@media (max-width: 992px) {
    .socials {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .socials {
        position: fixed;
        right: 10px;
        bottom: 14px;
        top: auto;
        transform: none;
        flex-direction: row;
    }
}

/* ====== Reveals (animations légères) ====== */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* Footer */
footer {
    color: #7a7a7a;
}

/* ====== Site Footer (dark) ====== */
.site-footer {
    position: relative;
    background: #121212;
    color: #eaeaea;
    overflow: hidden;
    padding: 72px 0 56px;
}

.site-footer .texture {
    position: absolute;
    inset: 0;
    opacity: .25;
    background: url('/assets/img/back1.png') center/cover no-repeat;
    mix-blend-mode: normal;
}

.site-footer .container {
    position: relative;
    z-index: 1
}

.footer-title {
    color: var(--accent);
    font-weight: 900;
    font-size: clamp(30px, 4.5vw, 48px);
    letter-spacing: .4px;
    margin-bottom: 18px
}

.footer-nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 18px
}

.footer-nav a {
    color: #efefef;
    text-decoration: none;
    font-weight: 800
}

.footer-nav a.active {
    color: var(--accent)
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-bottom: 18px
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: #111;
    text-decoration: none
}

.copyright {
    color: #bdbdbd;
    font-size: .925rem
}

.news-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px
}

.news-title .line {
    width: 56px;
    height: 2px;
    background: #fff;
    opacity: .85;
    display: inline-block
}

.news-title h3 {
    margin: 0;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: .3px
}

.footer-form .form-control {
    background: transparent;
    border: 2px solid #696969;
    color: #fff;
    height: 54px
}

.footer-form .form-control::placeholder {
    color: #bdbdbd
}

.footer-form .form-check-label {
    color: #d6d6d6
}

.btn-accent {
    background: var(--accent);
    border: 2px solid var(--accent);
    color: #111;
    font-weight: 800
}

.btn-accent:hover {
    filter: brightness(.95)
}

/* ====== Episodes list ====== */
.searchbar {
    display: flex;
    align-items: center;
    gap: .6rem;
    border-bottom: 2px solid #1f1f1f;
    max-width: 640px;
    padding: .35rem 0;
}

.searchbar i {
    color: #7a7a7a
}

.searchbar .search-input {
    border: 0;
    background: transparent;
    box-shadow: none;
    outline: none;
    padding-left: 0
}

.searchbar .search-input::placeholder {
    color: #9a9a9a
}

.episode-title {
    color: var(--accent);
    font-weight: 900;
    font-size: clamp(22px, 3.2vw, 34px);
    letter-spacing: .2px
}

.episode-thumb {
    width: 132px;
    height: 132px;
    border-radius: 6px;
    background: #222 center/cover no-repeat;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.episode-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    transition: opacity .25s ease;
}

.episode-thumb .overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    transform: translateY(6px) scale(.98);
    transition: opacity .25s ease, transform .25s ease;
    color: #fff;
}

.overlay .play {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--accent);
    box-shadow: 0 10px 20px rgba(255, 106, 0, .35);
}

.overlay .play i {
    font-size: 1.05rem;
    margin-left: 2px;
}

.episode-item:hover .episode-thumb::after {
    opacity: 1;
}

.episode-item:hover .episode-thumb .overlay {
    opacity: 1;
    transform: none;
}

.meta {
    color: #8a8a8a;
    font-weight: 600
}

.meta .sep {
    margin: 0 .5rem;
    color: #c0c0c0
}

.latest-badge {
    background: #f4f4f4;
    border: 1px solid #e1e1e1;
    color: #333;
    font-weight: 800;
    padding: .18rem .5rem;
    border-radius: .35rem;
    font-size: .75rem
}

.episode-sep {
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    opacity: 1;
    margin: 1.25rem 0
}

.episode-item:last-child .episode-sep {
    display: none
}
