/* === STYLES GÉNÉRAUX === */
:root {
  --accent: #fbbf24; /* jaune doux / amber */
  --bg-dark: #000;
  --text-light: #e5e7eb;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
}

/* === TEXTES & LIENS === */
a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #fde68a;
}

/* === BOUTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.25s ease;
}
.btn:hover {
  transform: scale(1.03);
}

.btn-primary {
  background-color: var(--accent);
  color: #000;
}
.btn-primary:hover {
  background-color: #facc15;
}

/* === CARTES === */
.card {
  background-color: rgba(38, 38, 38, 0.6);
  border: 1px solid #262626;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.25s ease;
}
.card:hover {
  transform: scale(1.02);
  border-color: var(--accent);
}

/* === HERO === */
.hero {
  background: radial-gradient(circle at 20% 20%, rgba(255, 204, 0, 0.05), transparent 60%);
  border-bottom: 1px solid #262626;
}

/* === BADGES (réseaux sociaux / QR) === */
.badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  background-color: rgba(38, 38, 38, 0.8);
  border: 1px solid #333;
  font-size: 0.85rem;
  transition: all 0.25s ease;
}
.badge:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.05);
}

/* === ACCENT TEXT === */
.accent {
  color: var(--accent);
}

/* === GALERIE === */
.grid-gallery img {
  border-radius: 1rem;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.grid-gallery img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* === FORMULAIRES === */
input, textarea {
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2);
}

/* === FOOTER === */
footer a:hover {
  color: var(--accent);
}

/* === RESPONSIVE === */
@media (max-width: 640px) {
  .btn {
    width: 100%;
  }
  header nav {
    display: none;
  }
  header {
    text-align: center;
  }
}

/* === SCROLLBAR CUSTOM === */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}
