/* Variables globales */
:root {
  --primary: #0079bc;
  --primary-dark: #005f95;
  --primary-light: #3aa0de;
  --secondary: #1c1c1c;
  --text-dark: #1c1c1c;
  --text-medium: #4f4f4f;
  --text-light: #787878;
  --bg-cream: #f6f3ee;
  --bg-white: #ffffff;
  --bg-light: #fafaf9;
  --border-light: #e0ded9;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset et base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.25rem;
  letter-spacing: -0.01em;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-medium);
  font-size: 1.0625rem;
}

/* Header et navigation */
header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.site-nav-logo {
  height: 40px;
  width: auto;
  margin-right: 1rem;
  transition: var(--transition);
}

.site-nav-logo:hover {
  opacity: 0.8;
}

.site-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.site-nav a:hover {
  color: var(--primary);
}

.site-nav a:hover::after {
  width: 100%;
}

/* Main content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

/* Hero section */
.hero {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 4rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background-image: url('logo-large.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-mascot {
  flex: 0 0 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mascot img {
  width: 100%;
  height: auto;
  max-width: 300px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
  animation: mascotBored 20s ease-in-out infinite;
}

@keyframes mascotBored {
  0%, 100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  10% {
    transform: translateY(-20px) scale(1) rotate(0deg);
  }
  20% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  30% {
    transform: translateY(-15px) scale(1) rotate(0deg);
  }
  40% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  /* Elle s'ennuie et se dandine un peu */
  45% {
    transform: translateY(0) scale(1) rotate(-5deg);
  }
  47% {
    transform: translateY(0) scale(1) rotate(5deg);
  }
  49% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) scale(1) rotate(0deg);
  }
  60% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  /* Elle grossit un peu (excitation) */
  70% {
    transform: translateY(0) scale(1.15) rotate(0deg);
  }
  72% {
    transform: translateY(-10px) scale(1.15) rotate(0deg);
  }
  74% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  80% {
    transform: translateY(-15px) scale(1) rotate(0deg);
  }
  /* Elle tourne sur elle-même */
  88% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  91% {
    transform: translateY(-5px) scale(1.05) rotate(180deg);
  }
  94% {
    transform: translateY(0) scale(1) rotate(360deg);
  }
  96% {
    transform: translateY(-10px) scale(1) rotate(360deg);
  }
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  font-weight: 500;
}

/* Contact page overrides */
.page-contact .hero {
  background: linear-gradient(135deg, #1c1c1c 0%, #2c2c2c 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-contact .hero h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: initial;
}

.page-contact .hero p,
.page-contact .hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.contact-hero {
  align-items: stretch;
}

.contact-hero-card {
  flex: 0 0 320px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 2rem;
  color: #ffffff;
  align-self: center;
}

.contact-hero-card h2 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #ffffff;
}

.contact-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.contact-hero-list li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.contact-hero-note {
  margin-bottom: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

.page-contact .stats-section {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
}

.page-contact .stat-card,
.page-contact .stat-number,
.page-contact .stat-label,
.page-contact .stat-desc {
  color: var(--text-dark);
  text-shadow: none;
}

.page-contact .stat-desc {
  color: var(--text-medium);
}

.contact-mascot-section {
  margin: 4rem 0;
}

.contact-mascot-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-mascot-text h2 {
  margin-top: 0;
}

.contact-mascot {
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-mascot img {
  width: 100%;
  max-width: 220px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
  animation: contactFloat 12s ease-in-out infinite;
}

@keyframes contactFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-12px) rotate(-2deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(-8px) rotate(2deg);
  }
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-lg);
}

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

.stat-card {
  text-align: center;
  color: white;
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.95);
}

.stat-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* About Section */
.about-section {
  margin: 4rem 0;
  padding: 3rem 2rem;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
}

.about-section.speech-bubble {
  --bubble-bg: var(--bg-light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  margin-top: 0;
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.about-img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* Testimonial Section */
.testimonial-section {
  margin: 4rem 0;
  padding: 3rem 2rem;
  background: white;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.testimonial blockquote {
  margin: 0;
  padding: 0;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
}

.testimonial cite {
  display: block;
  margin-top: 1.5rem;
  font-size: 1rem;
  font-style: normal;
  color: var(--primary);
  font-weight: 600;
}

/* Speech bubble accents (comics) */
.speech-bubble {
  position: relative;
  background: var(--bubble-bg, var(--bg-white));
  border: 2px solid var(--bubble-border, var(--primary));
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 3px rgba(0, 121, 188, 0.18), var(--shadow-sm);
  background-image:
    radial-gradient(rgba(0, 121, 188, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, rgba(0, 121, 188, 0.06), rgba(0, 121, 188, 0));
  background-size: 10px 10px, 100% 100%;
  background-position: 0 0, center;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--bubble-bg, var(--bg-white));
  border-right: 2px solid var(--bubble-border, var(--primary));
  border-bottom: 2px solid var(--bubble-border, var(--primary));
  bottom: -10px;
  left: 48px;
  transform: rotate(45deg);
}

.speech-bubble--right::after {
  left: auto;
  right: 48px;
}

.speech-bubble--electric {
  --bubble-border: #0064a8;
  box-shadow: 0 0 0 4px rgba(0, 121, 188, 0.28), 0 8px 24px rgba(0, 121, 188, 0.18);
  background-image:
    repeating-linear-gradient(135deg, rgba(0, 121, 188, 0.14) 0 6px, rgba(0, 121, 188, 0) 6px 12px),
    radial-gradient(rgba(0, 121, 188, 0.15) 1px, transparent 1px),
    linear-gradient(135deg, rgba(0, 121, 188, 0.08), rgba(0, 121, 188, 0));
  background-size: 100% 100%, 10px 10px, 100% 100%;
  background-position: center, 0 0, center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

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

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

.card-highlight {
  border-left: 4px solid var(--primary);
}

.card h3 {
  color: var(--primary);
  font-size: 1.375rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.card p {
  font-size: 1rem;
  margin-bottom: 0;
}

/* Features section */
.features {
  margin: 4rem 0;
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.license-benefits {
  background: var(--bg-light);
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
}

.license-benefits .section-intro {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.feature-content p {
  margin-bottom: 0;
  font-size: 1rem;
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 4rem 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 4rem 0;
  box-shadow: var(--shadow-lg);
}

.cta-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  background: white;
  color: var(--primary);
}

.cta-section .btn:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.img-featured {
  width: 100%;
  margin: 3rem 0;
  box-shadow: var(--shadow-md);
}

.img-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

/* Lists */
ul, ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.75rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* Store cards */
.store-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}

.store-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.store-card h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.store-card p {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.store-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.store-card a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.store-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.store-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.store-social a:hover {
  background: var(--primary);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.store-social-icon {
  width: 18px;
  height: 18px;
  display: block;
}

/* Team section */
.team-member {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-member img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 4px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.team-member h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
}

.team-role {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.team-member p {
  text-align: left;
  width: 100%;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
  margin: 3rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  width: calc(50% - 2rem);
  border: 1px solid var(--border-light);
}

.timeline-year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: var(--shadow-md);
}

/* Contact Page Styles */
.contact-form-section {
  margin: 4rem 0;
}

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

.step-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}

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

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}

.step-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.step-card p {
  color: var(--text-medium);
  line-height: 1.6;
}

.contact-cta-box {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin: 4rem 0;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary);
}

.contact-box-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-box-text h2 {
  margin-top: 0;
  color: var(--primary);
}

.contact-checklist {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.contact-checklist li {
  padding: 0.75rem 0;
  font-size: 1.125rem;
  color: var(--text-dark);
}

.contact-box-action {
  text-align: center;
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.btn-contact {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 1.25rem 3rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.btn-contact:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.email-address {
  font-size: 1.125rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.response-time {
  font-size: 0.875rem;
  color: var(--text-medium);
  font-weight: 600;
}

/* Legacy contact styles (kept for compatibility) */
.contact-info {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  margin: 2rem 0;
}

.contact-info h2 {
  color: var(--primary);
  margin-top: 0;
}

.contact-info ul {
  list-style: none;
  padding-left: 0;
}

.contact-info li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.contact-info li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.25rem;
}

.contact-email {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: var(--transition);
}

.contact-email:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mascot peek (pour page concept) */
.mascot-peek {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  animation: mascotPeek 30s ease-in-out infinite;
}

.mascot-peek img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

@keyframes mascotPeek {
  0%, 100% {
    opacity: 0;
    transform: translateY(20px) scale(0.8) rotate(0deg);
  }
  5% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
  7% {
    transform: translateY(-5px) scale(1.05) rotate(-5deg);
  }
  9% {
    transform: translateY(0) scale(1) rotate(5deg);
  }
  11% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  15% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
  20% {
    opacity: 0;
    transform: translateY(20px) scale(0.8) rotate(0deg);
  }
}

/* Footer */
footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

footer a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

footer a:hover {
  color: var(--primary-light);
}

.footer-social {
  margin-top: 1.5rem;
  font-size: 1.5rem;
}

.footer-social a {
  margin: 0 0.75rem;
  display: inline-block;
  transition: var(--transition);
}

.footer-social a:hover {
  transform: translateY(-3px);
}

/* Section spacing */
section {
  margin: 4rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.125rem;
  }

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

  .hero-text {
    text-align: center;
  }

  .hero-mascot {
    flex: 0 0 200px;
  }

  .hero-mascot img {
    max-width: 200px;
  }

  main {
    padding: 2rem 1.5rem 4rem;
  }

  .site-nav {
    gap: 1rem;
    padding: 1rem 1.5rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .timeline::before {
    left: 2rem;
  }

  .timeline-item {
    flex-direction: column !important;
    padding-left: 4rem;
  }

  .timeline-content {
    width: 100%;
  }

  .timeline-year {
    left: 2rem;
    transform: translateX(-50%);
  }

  .team-member {
    padding: 1.5rem;
  }

  .cta-section {
    padding: 3rem 2rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .contact-box-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-card {
    flex: 1 1 auto;
    width: 100%;
  }

  .contact-mascot-card {
    flex-direction: column;
    text-align: center;
  }

  .contact-mascot {
    flex: 0 0 auto;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}
