/* ==========================================================================
   Café des Artistes — Enseigne Vintage & Vert Sauge, Bois & Crème
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Outfit:wght@300..800&family=Plus+Jakarta+Sans:ital,wght@0,400..700;1,400..700&display=swap');

:root {
  /* Palette : Vert Sauge, Bois & Crème */
  --bg-body: #FAF7F2;          /* Crème lin très doux */
  --bg-card: #FFFFFF;          /* Blanc pur pour le détachement */
  --bg-card-hover: #F5EFE6;    /* Crème chaleureux au survol */
  --bg-nav: rgba(250, 247, 242, 0.95);

  --accent-sage: #4A7C59;      /* Vert Sauge principal */
  --accent-sage-hover: #3B6645;
  --accent-sage-light: rgba(74, 124, 89, 0.12);
  
  --accent-wood: #54382B;      /* Bois Châtaigne noble */
  --accent-wood-light: #7B5241;
  
  --accent-solar: #DCAE71;     /* Or Antique chaleureux */
  --accent-solar-glow: rgba(220, 174, 113, 0.25);

  --text-main: #261C14;        /* Bois très foncé (Contraste maximal) */
  --text-muted: #5A4D41;       /* Terre cuite / châtaigne doux */
  --text-inverse: #FFFFFF;

  --border-color: rgba(74, 124, 89, 0.2);
  --border-active: #4A7C59;

  /* Typographie Style Éditorial & Enseigne Raffinée */
  --font-heading: 'Outfit', sans-serif;
  --font-script: 'Courgette', cursive;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Layout & Espacements */
  --container-max: 1320px;
  --padding-section: 6rem;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /* Ombres douces & Élévation */
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 8px rgba(38, 28, 20, 0.04);
  --shadow-md: 0 8px 24px rgba(38, 28, 20, 0.08);
  --shadow-lg: 0 16px 40px rgba(38, 28, 20, 0.12);
}

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

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

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Typographie Élégante & Éditoriale */
h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-variation-settings: "opsz" 36, "wght" 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--text-main);
}

.text-gold {
  color: var(--accent-solar);
  background: linear-gradient(135deg, #E5C185 0%, #DCAE71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.font-script {
  font-family: var(--font-script);
  font-weight: 400;
}

.text-muted {
  color: var(--text-muted);
}

/* =========================================
   Layout Utilities
   ========================================= */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--padding-section) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-sage-light);
  color: var(--accent-sage);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(74, 124, 89, 0.25);
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
}

/* =========================================
   Boutons (Buttons)
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--accent-sage);
  color: var(--text-inverse);
  box-shadow: 0 4px 14px rgba(74, 124, 89, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-sage-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.4);
}

.btn-outline {
  background-color: var(--bg-card);
  border-color: var(--border-color);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--accent-sage);
  color: var(--accent-sage);
  background-color: var(--accent-sage-light);
  transform: translateY(-2px);
}

/* =========================================
   Navigation & Header
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
  background: rgba(26, 18, 13, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.navbar.scrolled {
  background-color: rgba(250, 247, 242, 0.98);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-symbol-svg,
.brand-symbol-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
  transition: var(--transition);
}

.brand-logo:hover .brand-symbol-svg,
.brand-logo:hover .brand-symbol-img {
  transform: scale(1.08) rotate(-3deg);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: 0.04em;
  transition: var(--transition);
}

.brand-script {
  font-family: var(--font-script);
  color: var(--accent-solar);
  font-size: 1.4rem;
  font-weight: 400;
}

.navbar.scrolled .brand-title {
  color: var(--text-main);
}

.brand-subtitle {
  font-size: 0.7rem;
  color: #F59E0B;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  transition: var(--transition);
}

.navbar.scrolled .brand-subtitle {
  color: var(--accent-sage);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.navbar.scrolled .nav-link {
  color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
  color: #F59E0B;
}

.navbar.scrolled .nav-link:hover, 
.navbar.scrolled .nav-link.active {
  color: var(--accent-sage);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #F59E0B;
  transition: var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .nav-link::after {
  background-color: var(--accent-sage);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.audio-widget {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-main);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.audio-widget:hover {
  border-color: var(--accent-sage);
  color: var(--accent-sage);
}

.vinyl-disc {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #D97706 20%, #261C14 22%, #54382B 100%);
  display: inline-block;
}

.vinyl-disc.playing {
  animation: spin 3s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Burger Mobile Button */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger-btn span {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .burger-btn span {
  background-color: var(--text-main);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--bg-body);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
}

/* =========================================
   Hero Section (Plein Écran & Chaleureux)
   ========================================= */
.hero-section {
  position: relative;
  min-height: 85vh;
  padding-top: 9rem;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(38, 28, 20, 0.55) 0%, 
    rgba(38, 28, 20, 0.78) 70%, 
    var(--bg-body) 100%);
  z-index: -1;
}

.hero-content-full {
  text-align: center;
  max-width: 920px;
  z-index: 2;
  margin: 0 auto 3rem auto;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* Bloc Marque proposé dans le Hero */
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  animation: fadeIn 0.8s ease-out;
}

.hero-logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.hero-brand-name {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: #FAF7F2;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-brand-name .brand-script {
  font-family: var(--font-script);
  color: var(--accent-solar);
  font-weight: normal;
  font-size: 2.8rem;
}

.hero-brand-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-solar);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 0.3rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: rgba(250, 247, 242, 0.9);
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

.hero-title .text-gold,
.hero-accent {
  font-style: italic;
  font-weight: 600;
  color: var(--accent-solar);
  background: linear-gradient(135deg, #F0D7AC 0%, #DCAE71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  display: inline-block;
}

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

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.5rem;
  max-width: 750px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* =========================================
   Bandeau Valeurs (Accueil, Partage, Spiritualité)
   ========================================= */
.valeurs-band {
  width: 100%;
  background-color: var(--bg-card);
  padding: 4rem 0;
  margin-top: 2rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 5;
}

.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.valeur-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  text-align: left;
}

.valeur-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  background-color: var(--accent-sage-light);
  color: var(--accent-sage);
  font-size: 1.8rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

.valeur-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.valeur-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* =========================================
   Cartes & Grilles Generales (Cards)
   ========================================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-sage);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: var(--accent-sage-light);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-sage);
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-main);
}

.card-desc {
  color: var(--text-muted);
  font-size: 1rem;
}

/* =========================================
   Agenda / Calendar Section
   ========================================= */
.calendar-wrapper {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.cal-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.calendar-placeholder h3 {
  font-size: 1.75rem;
  margin-bottom: 0.6rem;
}

.cal-hint {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
  padding: 1rem;
  background-color: var(--bg-body);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  display: inline-block;
}

/* =========================================
   Vidéos YouTube & Galerie
   ========================================= */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.video-wrapper {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.video-placeholder {
  text-align: center;
  color: var(--text-muted);
  padding: 1rem;
}

.play-icon {
  font-size: 2.2rem;
  color: var(--accent-sage);
  margin-bottom: 0.4rem;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: 240px;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38, 28, 20, 0.85), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  color: var(--text-inverse);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

.gallery-placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-inverse);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  gap: 0.8rem;
}

/* =========================================
   Presse & Partenaires
   ========================================= */
.presse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.presse-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

/* =========================================
   Chorale Gospel Components
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.lieu-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.lieu-badge {
  background-color: var(--accent-sage-light);
  color: var(--accent-sage);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.horaire-chip {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--accent-wood);
  font-weight: 600;
}

.tarif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.tarif-item {
  background-color: var(--bg-body);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  text-align: center;
}

.tarif-item.featured {
  background-color: var(--accent-sage-light);
  border-color: var(--accent-sage);
}

.tarif-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.tarif-prix {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
}

/* =========================================
   Formulaire de Contact
   ========================================= */
.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-sm);
  background-color: var(--bg-body);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: var(--transition);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent-sage);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px var(--accent-sage-light);
}

.form-success {
  padding: 1rem;
  background-color: var(--accent-sage-light);
  border: 1px solid var(--accent-sage);
  color: var(--accent-sage-hover);
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-bottom: 1rem;
}

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.maps-embed {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background-color: var(--accent-wood);
  color: #F4EFE6;
  padding: 5rem 0 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer .brand-title {
  color: #FFFFFF;
}

.footer h4 {
  color: #F59E0B;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  line-height: 2.2;
}

.footer-links a, .footer p {
  color: #F4EFE6;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #F59E0B;
}

.footer a {
  color: #F4EFE6;
  text-decoration: none;
  transition: var(--transition);
}

.footer a:hover {
  color: #F59E0B;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transition: var(--transition);
}

.social-btn:hover {
  background-color: var(--accent-sage);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  color: #C8BCAC;
}

/* =========================================
   Responsive Breakpoints (PC / Tablette / Mobile)
   ========================================= */

/* Grand Écran Laptop (max 1200px) */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
  .about-grid {
    gap: 2.5rem;
  }
}

/* Tablette (max 992px) */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  
  .burger-btn {
    display: flex;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .valeurs-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .valeur-item {
    align-items: center;
    text-align: center;
    flex-direction: column;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Grand Smartphone (max 768px) */
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .videos-grid,
  .tarif-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Petit Smartphone (max 576px) */
@media (max-width: 576px) {
  .container {
    width: 92%;
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .section-title {
    font-size: 1.9rem;
  }
  
  .btn {
    width: 100%;
  }

  .calendar-wrapper {
    padding: 2rem 1rem;
  }
}
