* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #0c0908;
  background-image: 
    radial-gradient(circle at center, rgba(30, 20, 15, 0.6) 0%, rgba(5, 3, 2, 0.95) 100%),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.15), rgba(0,0,0,0.15) 1px, transparent 1px, transparent 2px);
  color: #c9b49a;
  font-family: 'Roboto Condensed', sans-serif;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.container {
  width: 1000px;
  max-width: 100%;
  border: 3px solid #5a3e22;
  border-radius: 12px;
  padding: 24px;
  background: rgba(15, 10, 8, 0.85);
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.9), inset 0 0 15px rgba(90, 62, 34, 0.3);
}

/* --- HEADER --- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  gap: 15px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.badge-on-air {
  background: linear-gradient(180deg, #d33c16 0%, #7c1a06 100%);
  color: #ffde9e;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 3px;
  border: 1px solid #ff7a52;
  letter-spacing: 1px;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  color: #d1b896;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a.active, nav a:hover {
  color: #ff9d3b;
}

.btn-on-air-header {
  background: linear-gradient(180deg, #b82a06 0%, #5e1100 100%);
  color: #ffde9e;
  border: 2px solid #e25b33;
  border-radius: 20px;
  padding: 6px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1.5px;
  box-shadow: 0 0 10px rgba(184, 42, 6, 0.5);
  cursor: pointer;
  white-space: nowrap;
}

/* --- HERO --- */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
}

.hero-left {
  width: 230px;
  text-align: center;
}

.hero-center {
  flex: 1;
  padding: 0 30px;
}

.main-title {
  font-family: 'Oswald', sans-serif;
  font-size: 58px;
  line-height: 0.9;
  color: #e59033;
  text-shadow: 2px 2px 4px #000;
  letter-spacing: 1px;
}

.main-title span {
  color: #d4c4b0;
}

.subtitle {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: #d4c4b0;
  margin: 8px 0 15px 0;
}

.hero-description {
  font-size: 14px;
  line-height: 1.4;
  color: #a89580;
  margin-bottom: 20px;
  max-width: 380px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(180deg, #c44018 0%, #701d06 100%);
  color: #fff;
  border: 1px solid #e06038;
  border-radius: 5px;
  padding: 8px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary {
  background: transparent;
  color: #d4c4b0;
  border: 1px solid #7a5c3e;
  border-radius: 5px;
  padding: 8px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-right {
  width: 220px;
  text-align: right;
}

/* --- PARCHMENT BANNER --- */
.banner-parchment {
  background: #cbb493;
  background-image: radial-gradient(#d6c1a3 15%, transparent 16%);
  background-size: 6px 6px;
  border-radius: 4px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  color: #2b1e16;
  margin-bottom: 25px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.3), 0 4px 8px rgba(0,0,0,0.5);
}

.banner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.banner-item:not(:last-child) {
  border-right: 1px dashed #8c7356;
  padding-right: 15px;
  margin-right: 15px;
}

.banner-icon {
  font-size: 26px;
  color: #7a2b18;
}

.banner-text h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.banner-text p {
  font-size: 11px;
  color: #4a382a;
}

.banner-text .highlight {
  color: #9e2a1b;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: bold;
}

.btn-don {
  background: #b53818;
  color: #fff;
  border: none;
  padding: 4px 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 5px;
}

/* --- CARDS GRID --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.card {
  border: 1px solid #3d2b1d;
  border-radius: 6px;
  padding: 15px;
  background: rgba(20, 13, 9, 0.6);
}

.card-title {
  font-family: 'Oswald', sans-serif;
  color: #e59033;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.card-text {
  font-size: 12px;
  line-height: 1.3;
  color: #9c8a76;
  margin-bottom: 12px;
}

.btn-outline {
  background: transparent;
  border: 1px solid #5a422d;
  color: #c9b49a;
  padding: 4px 10px;
  font-size: 10px;
  border-radius: 3px;
  cursor: pointer;
  text-transform: uppercase;
}

/* News items inside card */
.news-box {
  background: #cbb493;
  color: #2b1e16;
  border-radius: 4px;
  padding: 8px;
  font-size: 11px;
}

.news-item {
  padding: 4px 0;
}

.news-item:first-child {
  border-bottom: 1px dashed #8c7356;
}

.news-item h5 {
  font-weight: bold;
  font-size: 11px;
}

.news-item span {
  font-size: 9px;
  color: #66503c;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #3a271a;
  color: #d4c4b0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
}

.social-icon.fb { background: #3b5998; }
.social-icon.ig { background: #c13584; }
.social-icon.yt { background: #cd2019; }

/* --- FOOTER --- */
footer {
  border-top: 1px dashed #3d2b1d;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #7a6855;
  gap: 15px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.url-badge {
  border: 1px solid #4a3625;
  padding: 4px 12px;
  border-radius: 12px;
  color: #d4c4b0;
  font-family: 'Oswald', sans-serif;
}

/* --- MEDIA QUERIES (MOBILE & TABLETTE) --- */
@media (max-width: 850px) {
  body {
    padding: 10px;
  }

  .container {
    padding: 15px;
  }

  header {
    flex-direction: column;
    text-align: center;
  }

  nav {
    gap: 12px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-left, .hero-right {
    display: none;
  }

  .hero-center {
    padding: 0;
  }

  .hero-buttons {
    justify-content: center;
  }

  .banner-parchment {
    flex-direction: column;
    gap: 15px;
  }

  .banner-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px dashed #8c7356;
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 15px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 42px;
  }

  .subtitle {
    font-size: 22px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: #0c0908;
      background-image: 
        radial-gradient(circle at center, rgba(30, 20, 15, 0.6) 0%, rgba(5, 3, 2, 0.95) 100%),
        repeating-linear-gradient(0deg, rgba(0,0,0,0.15), rgba(0,0,0,0.15) 1px, transparent 1px, transparent 2px);
      color: #c9b49a;
      font-family: 'Roboto Condensed', sans-serif;
      display: flex;
      justify-content: center;
      padding: 20px;
    }

    .container {
      width: 1000px;
      max-width: 100%;
      border: 3px solid #5a3e22;
      border-radius: 12px;
      padding: 24px;
      background: rgba(15, 10, 8, 0.85);
      box-shadow: 0 0 35px rgba(0, 0, 0, 0.9), inset 0 0 15px rgba(90, 62, 34, 0.3);
    }

    /* --- HEADER --- */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 25px;
      gap: 15px;
    }

    .logo-container {
      display: flex;
      align-items: center;
    }

    .badge-on-air {
      background: linear-gradient(180deg, #d33c16 0%, #7c1a06 100%);
      color: #ffde9e;
      font-family: 'Oswald', sans-serif;
      font-size: 11px;
      padding: 2px 10px;
      border-radius: 3px;
      border: 1px solid #ff7a52;
      letter-spacing: 1px;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    nav a {
      color: #d1b896;
      text-decoration: none;
      font-family: 'Oswald', sans-serif;
      font-size: 14px;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    nav a.active, nav a:hover {
      color: #ff9d3b;
    }

    .btn-on-air-header {
      background: linear-gradient(180deg, #b82a06 0%, #5e1100 100%);
      color: #ffde9e;
      border: 2px solid #e25b33;
      border-radius: 20px;
      padding: 6px 20px;
      font-family: 'Oswald', sans-serif;
      font-size: 16px;
      font-weight: bold;
      letter-spacing: 1.5px;
      box-shadow: 0 0 10px rgba(184, 42, 6, 0.5);
      cursor: pointer;
      white-space: nowrap;
    }

    /* --- HERO --- */
    .hero {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 25px;
      position: relative;
    }

    .hero-left {
      width: 230px;
      text-align: center;
    }

    .hero-center {
      flex: 1;
      padding: 0 30px;
    }

    .main-title {
      font-family: 'Oswald', sans-serif;
      font-size: 58px;
      line-height: 0.9;
      color: #e59033;
      text-shadow: 2px 2px 4px #000;
      letter-spacing: 1px;
    }

    .main-title span {
      color: #d4c4b0;
    }

    .subtitle {
      font-family: 'Caveat', cursive;
      font-size: 28px;
      color: #d4c4b0;
      margin: 8px 0 15px 0;
    }

    .hero-description {
      font-size: 14px;
      line-height: 1.4;
      color: #a89580;
      margin-bottom: 20px;
      max-width: 380px;
    }

    .hero-buttons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: linear-gradient(180deg, #c44018 0%, #701d06 100%);
      color: #fff;
      border: 1px solid #e06038;
      border-radius: 5px;
      padding: 8px 16px;
      font-family: 'Oswald', sans-serif;
      font-size: 13px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .btn-secondary {
      background: transparent;
      color: #d4c4b0;
      border: 1px solid #7a5c3e;
      border-radius: 5px;
      padding: 8px 16px;
      font-family: 'Oswald', sans-serif;
      font-size: 13px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hero-right {
      width: 220px;
      text-align: right;
    }

    /* --- PARCHMENT BANNER --- */
    .banner-parchment {
      background: #cbb493;
      background-image: radial-gradient(#d6c1a3 15%, transparent 16%);
      background-size: 6px 6px;
      border-radius: 4px;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      color: #2b1e16;
      margin-bottom: 25px;
      box-shadow: inset 0 0 10px rgba(0,0,0,0.3), 0 4px 8px rgba(0,0,0,0.5);
    }

    .banner-item {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 1;
    }

    .banner-item:not(:last-child) {
      border-right: 1px dashed #8c7356;
      padding-right: 15px;
      margin-right: 15px;
    }

    .banner-icon {
      font-size: 26px;
      color: #7a2b18;
    }

    .banner-text h4 {
      font-family: 'Oswald', sans-serif;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .banner-text p {
      font-size: 11px;
      color: #4a382a;
    }

    .banner-text .highlight {
      color: #9e2a1b;
      font-family: 'Oswald', sans-serif;
      font-size: 16px;
      font-weight: bold;
    }

    .btn-don {
      background: #b53818;
      color: #fff;
      border: none;
      padding: 4px 10px;
      font-family: 'Oswald', sans-serif;
      font-size: 12px;
      border-radius: 3px;
      cursor: pointer;
      margin-top: 5px;
    }

    /* --- CARDS GRID --- */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
      margin-bottom: 25px;
    }

    .card {
      border: 1px solid #3d2b1d;
      border-radius: 6px;
      padding: 15px;
      background: rgba(20, 13, 9, 0.6);
    }

    .card-title {
      font-family: 'Oswald', sans-serif;
      color: #e59033;
      font-size: 14px;
      text-transform: uppercase;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    .card-text {
      font-size: 12px;
      line-height: 1.3;
      color: #9c8a76;
      margin-bottom: 12px;
    }

    .btn-outline {
      background: transparent;
      border: 1px solid #5a422d;
      color: #c9b49a;
      padding: 4px 10px;
      font-size: 10px;
      border-radius: 3px;
      cursor: pointer;
      text-transform: uppercase;
    }

    /* News items inside card */
    .news-box {
      background: #cbb493;
      color: #2b1e16;
      border-radius: 4px;
      padding: 8px;
      font-size: 11px;
    }

    .news-item {
      padding: 4px 0;
    }

    .news-item:first-child {
      border-bottom: 1px dashed #8c7356;
    }

    .news-item h5 {
      font-weight: bold;
      font-size: 11px;
    }

    .news-item span {
      font-size: 9px;
      color: #66503c;
    }

    .social-icons {
      display: flex;
      gap: 10px;
      margin-top: 15px;
    }

    .social-icon {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: #3a271a;
      color: #d4c4b0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      text-decoration: none;
    }

    .social-icon.fb { background: #3b5998; }
    .social-icon.ig { background: #2e2c2dfd; }
    .social-icon.yt { background: #cd2019; }

    /* --- FOOTER --- */
    footer {
      border-top: 1px dashed #3d2b1d;
      padding-top: 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 11px;
      color: #7a6855;
      gap: 15px;
    }

    .footer-left {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .url-badge {
      border: 1px solid #4a3625;
      padding: 4px 12px;
      border-radius: 12px;
      color: #d4c4b0;
      font-family: 'Oswald', sans-serif;
    }

    /* --- MEDIA QUERIES (MOBILE & TABLETTE) --- */
    @media (max-width: 850px) {
      body {
        padding: 10px;
      }

      .container {
        padding: 15px;
      }

      header {
        flex-direction: column;
        text-align: center;
      }

      nav {
        gap: 12px;
      }

      .hero {
        flex-direction: column;
        text-align: center;
      }

      .hero-left, .hero-right {
        display: none; /* Cache les grosses icônes latérales sur mobile */
      }

      .hero-center {
        padding: 0;
      }

      .hero-buttons {
        justify-content: center;
      }

      .banner-parchment {
        flex-direction: column;
        gap: 15px;
      }

      .banner-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px dashed #8c7356;
        padding-right: 0;
        margin-right: 0;
        padding-bottom: 15px;
      }

      .cards-grid {
        grid-template-columns: 1fr;
      }

      footer {
        flex-direction: column;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .main-title {
        font-size: 42px;
      }

      .subtitle {
        font-size: 22px;
      }

      .hero-buttons {
        flex-direction: column;
        width: 100%;
      }

      .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
      }
    }