/* ================== IMPORT GOOGLE FONTS ================== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cinzel:wght@400;600&family=Montserrat:wght@300;400;600&family=Playfair+Display:ital,wght@1,400;1,600&display=swap');

/* ================== ROOT VARIABLES ================== */
:root {
  --font-primary: 'Bebas Neue', sans-serif;
  --font-secondary: 'Cinzel', serif;
  --font-text: 'Montserrat', sans-serif;
  --font-accent: 'Playfair Display', serif;

  --gold: #d4af37;
  --black: #0b0b0b;
  --dark: #111;
  --gray: #1c1c1c;
}

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

html, body {
  font-family: var(--font-text);
  background: var(--black);
  color: #fff;
  line-height: 1.6;
  height: 100%;
}



/* ================== HERO ================== */
.article1-hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}

.article1-hero video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.article1-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,.9));
  z-index: 1;
}

.article1-center {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.article1-title {
  font-family: var(--font-primary);
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.article1-sub {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  color: #fff;
}

.article1-sound {
  position: absolute;
  bottom: 20px; left: 20px;
  z-index: 3;
  background: rgba(0,0,0,.7);
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.3rem;
  border-radius: 50%;
  width: 48px; height: 48px;
  cursor: pointer;
}

/* ================== INTRO ================== */
.article1-intro {
  padding: 80px 8%;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  background: var(--black); /* ✅ fond noir */
}

.intro-text {
  flex: 1;
  min-width: 280px;
}

.intro-text h2 {
  font-family: var(--font-primary);
  color: var(--gold);
  margin-bottom: 1rem;
}

.intro-img {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.intro-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(212,175,55,.4);
}

/* ================== TRENDS ================== */
.article1-trends {
  background: var(--dark);
  padding: 80px 8%;
}

.article1-trends h2 {
  text-align: center;
  color: var(--gold);
  font-family: var(--font-primary);
  margin-bottom: 2rem;
}

.trends-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.trends-grid article {
  background: var(--gray);
  padding: 1rem;
  border-radius: 12px;
  transition: .3s;
}

.trends-grid article:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 12px 35px rgba(212,175,55,.45) !important;
}

.trends-grid img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.trends-grid h3 {
  font-family: var(--font-secondary);
  font-size: 1.1rem; /* ✅ réduit pour éviter dépassement */
  line-height: 1.3;
  color: #fff;
  margin-bottom: .5rem;
}

.trends-grid p {
  font-size: .95rem;
}

/* ================== TIPS ================== */
.article1-tips {
  padding: 80px 8%;
  background: var(--black);
}

.article1-tips h2 {
  text-align: center;
  color: var(--gold);
  font-family: var(--font-primary);
  margin-bottom: 2rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tip {
  background: var(--gray);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: .3s;
}

.tip:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 25px rgba(212,175,55,.35) !important;
}

.tip h3 {
  font-family: var(--font-secondary);
  font-size: 1.05rem; /* ✅ réduit pour éviter dépassement */
  line-height: 1.4;
  color: var(--gold);
  margin-bottom: .8rem;
}

.tip p {
  font-size: .95rem;
  color: #fff;
}

/* ================== FAQ ================== */
.article1-faq {
  padding: 80px 8%;
  background: var(--dark);
  text-align: center;
}

.article1-faq h2 {
  text-align: center;
  color: var(--gold);
  font-family: var(--font-primary);
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item h3 {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--gold);
  margin-bottom: .5rem;
}

.faq-item p {
  font-size: .95rem;
  line-height: 1.6;
  color: #fff;
}

/* ================== RELATED ARTICLES ================== */
.article1-related {
  padding: 80px 8%;
  background: var(--dark);
  text-align: center;
}

.article1-related h2 {
  font-family: var(--font-primary);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.related-grid article {
  background: var(--gray);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.related-grid img {
  width: 100%;
  display: block;
  border-bottom: 3px solid var(--gold);
}

.related-grid h3 {
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.3;
  color: #fff;
  padding: 1rem;
}

.related-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(212,175,55,.45);
}

/* ================== CTA ================== */
.article1-cta {
  padding: 80px 8%;
  text-align: center;
  background: var(--black);
}

.article1-cta h2 {
  font-family: var(--font-primary);
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.article1-btn {
  background: linear-gradient(180deg, #d4af37, #f1d27a);
  color: #111;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: .3s;
}

.article1-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(212,175,55,.55);
}

/* ================== FIX AFFICHAGE DES CARTES ================== */
.trends-grid,
.tips-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem !important;
  width: 100% !important;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.trends-grid article,
.tip {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ================== CORRECTION BAS DE PAGE ================== */
html, body, footer, .site-footer {
  background: var(--black) !important;
  color: #fff !important;
}


