/* ============================================
   SORTIES.FR — Style principal
   Palette : fond #0F0E17, violet #7F5AF0, rose #FF6B9D, jaune #FFC857, texte #FFFFFE
   Typo : Urbanist (titres), Inter (corps)
   Mobile-first, responsive
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0F0E17;
  --bg-card: #1A1927;
  --bg-card-hover: #222136;
  --violet: #7F5AF0;
  --violet-light: #9B7BF7;
  --rose: #FF6B9D;
  --jaune: #FFC857;
  --texte: #FFFFFE;
  --texte-secondary: #B8B8D0;
  --texte-muted: #72728A;
  --gradient-hero: linear-gradient(135deg, #7F5AF0 0%, #FF6B9D 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(127,90,240,0.15) 0%, rgba(255,107,157,0.10) 100%);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--texte);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--violet-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rose); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Urbanist', 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--texte);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; color: var(--texte-secondary); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,14,23,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(127,90,240,0.15);
  transition: background var(--transition);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
}

.logo {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo span { -webkit-text-fill-color: var(--rose); }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-menu a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: var(--texte-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--texte);
  background: rgba(127,90,240,0.12);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--texte);
  border-radius: 2px;
  transition: all var(--transition);
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--bg-card);
    padding: 5rem 1.5rem 2rem;
    gap: 0.25rem;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { padding: 0.75rem 1rem; font-size: 1rem; }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
  }
  .nav-overlay.open { display: block; }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.25rem 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(127,90,240,0.25) 0%, rgba(255,107,157,0.08) 40%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: var(--texte-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Page Hero (pages internes) --- */
.page-hero {
  padding: 8rem 1.25rem 3rem;
  text-align: center;
  background: var(--gradient-subtle);
  border-bottom: 1px solid rgba(127,90,240,0.1);
}

.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { max-width: 650px; margin: 0 auto; font-size: 1.1rem; }

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--texte-muted);
}
.breadcrumbs a { color: var(--texte-muted); }
.breadcrumbs a:hover { color: var(--violet-light); }
.breadcrumbs span { margin: 0 0.4rem; }

/* --- Boutons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-hero);
  color: #fff;
  box-shadow: 0 4px 20px rgba(127,90,240,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(127,90,240,0.5);
  color: #fff;
}

.btn-secondary {
  background: rgba(127,90,240,0.12);
  color: var(--violet-light);
  border: 1px solid rgba(127,90,240,0.3);
}
.btn-secondary:hover {
  background: rgba(127,90,240,0.2);
  color: var(--texte);
}

.btn-cta {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,107,157,0.35);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,107,157,0.5);
  color: #fff;
}

.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.875rem; }

/* --- Sections --- */
section { padding: 5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 600px; margin: 0 auto; }

.section-header .section-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(127,90,240,0.12);
  border: 1px solid rgba(127,90,240,0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--violet-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid rgba(127,90,240,0.08);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(127,90,240,0.2);
}

.card-img {
  width: 100%;
  height: 200px;
  background: var(--gradient-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--texte-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(127,90,240,0.08);
}

.card-body { padding: 1.25rem; }
.card-body h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.card-body p { font-size: 0.92rem; margin-bottom: 0.75rem; }

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--texte-muted);
}
.card-meta .price { color: var(--jaune); font-weight: 600; }

.card-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: rgba(127,90,240,0.15);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--violet-light);
  margin-bottom: 0.5rem;
}

.card-badge.rose { background: rgba(255,107,157,0.15); color: var(--rose); }
.card-badge.jaune { background: rgba(255,200,87,0.15); color: var(--jaune); }

/* --- Univers Grid (Accueil) --- */
.univers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1rem;
}

.univers-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(127,90,240,0.08);
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--texte);
}
.univers-item:hover {
  border-color: var(--violet);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--texte);
}

.univers-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.univers-item h3 { font-size: 0.95rem; font-weight: 600; }

/* --- Occasions Grid --- */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}

.occasion-card {
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(127,90,240,0.08);
  transition: all var(--transition);
}
.occasion-card:hover {
  border-color: rgba(255,107,157,0.3);
  transform: translateY(-3px);
}

.occasion-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.occasion-card p { font-size: 0.9rem; margin-bottom: 1rem; }

/* --- Villes --- */
.villes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.ville-card {
  position: relative;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid rgba(127,90,240,0.08);
  transition: all var(--transition);
  text-decoration: none;
}

.ville-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,14,23,0.9) 0%, transparent 60%);
  z-index: 1;
}

.ville-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.ville-card h3 {
  position: relative;
  z-index: 2;
  font-size: 1.15rem;
  color: var(--texte);
}

.ville-card .ville-count {
  position: relative;
  z-index: 2;
  font-size: 0.8rem;
  color: var(--texte-muted);
  margin-top: 0.25rem;
}

.ville-card-content { position: relative; z-index: 2; }

/* --- Newsletter --- */
.newsletter-section {
  background: var(--gradient-subtle);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(127,90,240,0.15);
  margin: 2rem 0;
}

.newsletter-section h2 { margin-bottom: 0.5rem; }
.newsletter-section p { max-width: 500px; margin: 0 auto 1.5rem; }

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(127,90,240,0.3);
  border-radius: 50px;
  background: rgba(15,14,23,0.6);
  color: var(--texte);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input[type="email"]::placeholder { color: var(--texte-muted); }
.newsletter-form input[type="email"]:focus { border-color: var(--violet); }

@media (max-width: 500px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; justify-content: center; }
}

/* --- Article / Guide Content --- */
.guide-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.guide-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(127,90,240,0.2);
}

.guide-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--violet-light);
}

.guide-content h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.guide-content p { font-size: 1.02rem; line-height: 1.8; }

.guide-content ul, .guide-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--texte-secondary);
}
.guide-content li { margin-bottom: 0.5rem; line-height: 1.7; }

.guide-toc {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(127,90,240,0.1);
}

.guide-toc h4 { margin: 0 0 0.75rem; font-size: 1rem; color: var(--texte); }
.guide-toc ol { margin: 0; padding-left: 1.25rem; }
.guide-toc li { margin-bottom: 0.35rem; font-size: 0.92rem; }
.guide-toc a { color: var(--texte-secondary); }
.guide-toc a:hover { color: var(--violet-light); }

/* --- Info Box --- */
.info-box {
  background: var(--bg-card);
  border-left: 4px solid var(--violet);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box.rose { border-left-color: var(--rose); }
.info-box.jaune { border-left-color: var(--jaune); }
.info-box p { margin-bottom: 0; font-size: 0.95rem; }
.info-box strong { color: var(--texte); }

/* --- Activity Card (guides) --- */
.activity-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(127,90,240,0.08);
  transition: all var(--transition);
}
.activity-card:hover { border-color: rgba(127,90,240,0.2); }

.activity-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.activity-card h3 { margin: 0; color: var(--texte); }

.activity-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.tag-couple { background: rgba(255,107,157,0.15); color: var(--rose); }
.tag-amis { background: rgba(127,90,240,0.15); color: var(--violet-light); }
.tag-famille { background: rgba(255,200,87,0.15); color: var(--jaune); }
.tag-solo { background: rgba(184,184,208,0.15); color: var(--texte-secondary); }

.activity-details {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--texte-muted);
  flex-wrap: wrap;
}

.activity-details span { display: flex; align-items: center; gap: 0.35rem; }

/* --- Comparatif Table --- */
.table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  border: 1px solid rgba(127,90,240,0.1);
}

.comparatif-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.comparatif-table thead {
  background: rgba(127,90,240,0.12);
}

.comparatif-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--texte);
  white-space: nowrap;
}

.comparatif-table td {
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(127,90,240,0.08);
  color: var(--texte-secondary);
}

.comparatif-table tbody tr { transition: background var(--transition); }
.comparatif-table tbody tr:hover { background: rgba(127,90,240,0.05); }

.note-stars { color: var(--jaune); letter-spacing: 2px; }

/* --- Restaurant Card --- */
.resto-card {
  display: flex;
  gap: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(127,90,240,0.08);
  transition: all var(--transition);
}
.resto-card:hover { border-color: rgba(127,90,240,0.2); }

.resto-rank {
  font-family: 'Urbanist', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--violet);
  min-width: 40px;
}

.resto-info h4 { margin-bottom: 0.35rem; color: var(--texte); }
.resto-info .resto-type { font-size: 0.85rem; color: var(--violet-light); margin-bottom: 0.35rem; }

.resto-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--texte-muted);
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

@media (max-width: 500px) {
  .resto-card { flex-direction: column; gap: 0.5rem; }
}

/* --- Stars / Rating --- */
.stars { color: var(--jaune); font-size: 0.9rem; letter-spacing: 1px; }
.rating { display: flex; align-items: center; gap: 0.5rem; }
.rating-number {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--jaune);
}

/* --- Generateur d'idees --- */
.generateur {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
}

.gen-step {
  display: none;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.gen-step.active { display: block; }

.gen-step h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.gen-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.gen-option {
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border: 2px solid rgba(127,90,240,0.15);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  color: var(--texte);
}

.gen-option:hover {
  border-color: var(--violet);
  background: rgba(127,90,240,0.08);
}

.gen-option.selected {
  border-color: var(--violet);
  background: rgba(127,90,240,0.15);
  box-shadow: 0 0 20px rgba(127,90,240,0.2);
}

.gen-option .gen-emoji {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.gen-option .gen-label {
  font-weight: 600;
  font-size: 0.95rem;
}

.gen-results {
  display: none;
  text-align: left;
}

.gen-results.active { display: block; animation: fadeIn 0.4s ease; }

.gen-result-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(127,90,240,0.1);
}

.gen-result-card h4 { margin-bottom: 0.5rem; color: var(--texte); }
.gen-result-card p { font-size: 0.92rem; margin-bottom: 0.75rem; }

.gen-progress {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.gen-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(127,90,240,0.2);
  transition: all var(--transition);
}

.gen-dot.active { background: var(--violet); transform: scale(1.2); }
.gen-dot.done { background: var(--rose); }

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid rgba(127,90,240,0.1);
  padding: 1rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.5rem 0;
  font-weight: 600;
  color: var(--texte);
  font-size: 1.02rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--violet);
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0.5rem 0 0.75rem;
  font-size: 0.95rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid rgba(127,90,240,0.1);
  padding: 4rem 0 1.5rem;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--texte-muted);
  max-width: 280px;
  margin-top: 0.75rem;
}

.footer-col h4 {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--texte);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--texte-muted); font-size: 0.88rem; }
.footer-col a:hover { color: var(--violet-light); }

.footer-bottom {
  border-top: 1px solid rgba(127,90,240,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--texte-muted);
}

.footer-bottom a { color: var(--texte-muted); }
.footer-bottom a:hover { color: var(--violet-light); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Cookie Banner --- */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--bg-card);
  border-top: 1px solid rgba(127,90,240,0.15);
  padding: 1.25rem;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
}

.cookie-banner.show { display: block; }

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-inner p { margin: 0; font-size: 0.88rem; color: var(--texte-secondary); flex: 1; min-width: 250px; }

.cookie-actions { display: flex; gap: 0.75rem; }

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Top 3 Summary --- */
.top3-summary {
  background: var(--gradient-subtle);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(127,90,240,0.15);
}

.top3-summary h3 { margin-bottom: 1rem; font-size: 1.2rem; }

.top3-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.top3-rank {
  background: var(--violet);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.top3-text strong { color: var(--texte); }
.top3-text p { margin: 0; font-size: 0.9rem; }

/* --- Checklist --- */
.checklist {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.checklist h4 { margin-bottom: 1rem; }
.checklist li {
  list-style: none;
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--texte-secondary);
  font-size: 0.95rem;
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--violet);
  font-weight: 700;
}

/* --- Legal pages --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  color: var(--violet-light);
}

.legal-content p, .legal-content li {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* --- Utilities --- */
.text-center { text-align: center; }
.text-violet { color: var(--violet-light); }
.text-rose { color: var(--rose); }
.text-jaune { color: var(--jaune); }
.text-muted { color: var(--texte-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* --- Placeholder image --- */
.img-placeholder {
  width: 100%;
  height: 250px;
  background: var(--gradient-subtle);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--texte-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
  border: 1px dashed rgba(127,90,240,0.2);
  margin: 1.5rem 0;
}

/* --- Print --- */
@media print {
  .site-header, .site-footer, .cookie-banner, .newsletter-section { display: none; }
  body { background: #fff; color: #111; }
}

/* ============================================================
   UPGRADE CSS — sorties.fr
   Ameliorations CTA gradient, glow, cartes
   Date: 2026-04-29
   ============================================================ */

/* --- Transitions globales --- */
.btn-primary,
.btn-secondary,
.btn-cta,
[class*="card"] {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Bouton CTA : gradient glow violet→rose --- */
.btn-cta:hover {
  box-shadow: 0 4px 25px rgba(127, 90, 240, 0.4), 0 4px 15px rgba(255, 107, 157, 0.3);
  transform: translateY(-3px);
  background: linear-gradient(135deg, #7F5AF0, #FF6B9D);
}

.btn-cta:active {
  transform: translateY(0) scale(0.97);
}

/* --- Bouton principal : ombre violet au hover --- */
.btn-primary:hover {
  box-shadow: 0 4px 20px rgba(127, 90, 240, 0.4);
  transform: translateY(-2px);
}

/* --- Cartes : glow border au hover --- */
[class*="card"]:hover {
  box-shadow: 0 8px 25px rgba(127, 90, 240, 0.15), 0 0 0 1px rgba(127, 90, 240, 0.2);
  transform: translateY(-3px);
}

/* --- Cartes activites : highlight subtil au hover --- */
[class*="card"]::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: linear-gradient(135deg, rgba(127, 90, 240, 0.05), rgba(255, 107, 157, 0.05));
  pointer-events: none;
}

[class*="card"]:hover::after {
  opacity: 1;
}

/* --- Bouton secondaire --- */
.btn-secondary:hover {
  box-shadow: 0 3px 12px rgba(255, 200, 87, 0.3);
  transform: translateY(-1px);
}
