* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Public Sans", sans-serif;
    background: #000;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.nav {
    position: fixed;
    width: 100%;
    background: #000;
    z-index: 1000;
    padding: 15px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    align-items: center;
}
.image-container {
  width: 1280px;
  height: 720px;
  margin-top: 70px; margin-bottom: 100px ; padding-right: 250px

}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-text h1 {
    margin-top: 750px;
    margin-left: -100px
}
.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 29px;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: #FF002A;
}

.accueil {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accueil-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.accueil-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accueil-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 42, 0.3), rgba(179, 175, 175, 0.2));
    opacity: 0.7;
}

.accueil-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.accueil-content h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 80px;
    margin-bottom: 16px;
}

.accueil-content p {
    font-size: 19px;
    color: white;
    margin-bottom: 48px;
    text-transform: uppercase;
}

.accueil-boutons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.section {
    padding: 96px 0;
}

.section.sombre {
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
}

.section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 64px;
    text-transform: uppercase;
}

.grille-nouvelles,
.grille-podcasts,
.grille-equipe {
    display: grid;
    gap: 32px;
    margin-bottom: 32px;
}

.grille-nouvelles {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grille-podcasts {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grille-equipe {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.carte-nouvelle,
.carte-podcast,
.carte-equipe {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
}

.carte-nouvelle:hover,
.carte-podcast:hover,
.carte-equipe:hover {
    border-color: #FF002A;
}

.carte-nouvelle img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.contenu-carte {
    padding: 24px;
}

.categorie {
    color: #FF002A;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.contenu-carte h3 {
    font-size: 21px;
    margin-bottom: 8px;
}

.date {
    color: #B3AFAF;
    font-size: 13px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.carte-podcast {
    padding: 48px 32px;
    text-align: center;
}

.carte-podcast .icone {
    font-size: 40px;
    margin-bottom: 24px;
    color: #FF002A;
}

.carte-podcast h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 29px;
    margin-bottom: 16px;
}

.carte-equipe {
    padding: 32px;
    text-align: center;
}

.carte-equipe img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 24px;
    border: 3px solid #FF002A;
}

.btn {
    padding: 16px 32px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
}

.btn-principal {
    background: #FF002A;
    color: #fff;
}

.btn-principal:hover {
    background: #D90024;
}

.btn-secondaire {
    background: transparent;
    color: #fff;
    border: 1px solid #B3AFAF;
}

.btn-secondaire:hover {
    border-color: #FF002A;
}

.btn-contour {
    background: transparent;
    color: #fff;
    border: 1px solid #FF002A;
}

.btn-contour:hover {
    background: #FF002A;
}

.lien {
    color: #FF002A;
    text-decoration: none;
    text-transform: uppercase;
}

.lien:hover {
    text-decoration: underline;
}

.section-footer {
    text-align: center;
    margin-top: 32px;
}

.infolettre {
    text-align: center;
    margin-bottom: 48px;
}

.iframe-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 32px 0;
}

.cyberimpact-iframe {
    width: 577px;
    height: 400px;
    border: none;
}

.reseaux-sociaux {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.reseaux-sociaux a {
    color: #B3AFAF;
    text-decoration: none;
    text-transform: uppercase;
}

.reseaux-sociaux a:hover {
    color: #FF002A;
}

.pied-page {
    background: #000;
    border-top: 1px solid #1a1a1a;
    padding: 48px 0;
    text-align: center;
}

.pied-page img {
    height: 50px;
    margin-bottom: 16px;
}

.copyright {
    color: #B3AFAF;
    font-size: 14px;
    margin-top: 32px;
    text-transform: uppercase;
}

.page-entete {
    padding: 140px 0 48px;
    text-align: center;
    background: #000;
    border-bottom: 1px solid #1a1a1a;
}

.page-entete h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 52px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.page-sous-titre {
    font-size: 16px;
    color: #B3AFAF;
}

.titre-sport {
    font-family: "Stack Sans Text", sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 48px 0 16px;
}

.page-detail {
    padding-top: 120px;
}


.page-header {
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 24px;
}

.page-header .container,
.page-main .container {
    max-width: 960px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #B3AFAF;
    margin-bottom: 16px;
    margin-left: -100px
    
}

.back-link:hover {
    color: #FF002A;
}

.tag {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #FF002A;
    margin-bottom: 6px;
    margin-left: -100px; padding-left: 100px
}

.page-title {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 6px;
}

.page-meta {
    font-size: 14px;
    color: #B3AFAF;
    margin-bottom: 16px;
    margin-left: -100px
}

.media-cover img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
}


.text-block {
    max-width: 760px;
    margin: 24px auto 40px;
    font-size: 16px;
    line-height: 1.7;
}

.text-block p {
    margin-bottom: 16px;
}

.media-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 16px;
    align-items: flex-start;
}

.media-cover {
    width: 260px;
    max-width: 100%;
}

.media-text {
    flex: 1;
    min-width: 240px;
}

.media-text p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.media-meta {
    font-size: 14px;
    color: #B3AFAF;
    margin-bottom: 16px;
}

.media-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.episode-list {
    max-width: 960px;
    margin: 32px auto 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.episode {
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 14px 18px;
    background: #050505;
}

.episode small {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #B3AFAF;
    margin-bottom: 6px;
}

.episode h2 {
    font-size: 18px;
    margin-bottom: 6px;
}

.episode p {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.episode audio {
    width: 100%;
}
