/* Genuine France - Style CSS Principal */
/* Import Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

/* Variables CSS pour la palette française élégante */
:root {
  --primary-color: #2d5a4f;
  --primary-hover: #1e3f36;
  --secondary-color: #f5f3f0;
  --accent-beige: #e8e1d9;
  --accent-cream: #f9f7f4;
  --accent-blue-grey: #b8c5d1;
  --text-dark: #2c2c2c;
  --text-light: #6a6a6a;
  --text-white: #ffffff;
  --border-light: #e0d8d1;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.15);
  --gradient-primary: linear-gradient(135deg, #2d5a4f 0%, #1e3f36 100%);
  --gradient-secondary: linear-gradient(135deg, #f9f7f4 0%, #e8e1d9 100%);
  --gradient-accent: linear-gradient(135deg, #b8c5d1 0%, #a0b3c2 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--secondary-color);
}

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

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  font-weight: 400;
  max-width: 700px;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Layout Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Navigation */
header {
  background: var(--text-white);
  box-shadow: var(--shadow-soft);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.nav-menu li a {
  font-weight: 400;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--primary-color);
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 100%;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

/* Main Content */
main {
  margin-top: 80px;
  min-height: calc(100vh - 160px);
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-style: italic;
}

/* Hero Section */
.hero {
  background: linear-gradient(
    135deg,
    var(--accent-cream) 0%,
    var(--accent-beige) 100%
  );
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://cdn1.genspark.ai/user-upload-image/24_generated/8d925f9d-ae5c-4c83-8da3-d4b7dee0adab")
    center/cover;
  opacity: 0.15;
  z-index: 1;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.hero .tagline {
  font-size: 1.3rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--text-white);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

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

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

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-white);
}

/* Modern Cards with Advanced Styling */
.card-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
  perspective: 1000px;
}

.card {
  background: var(--text-white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-15px) rotateX(5deg);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-color);
}

/* Enhanced Clickable Cards */
.card-clickable {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(145deg, #ffffff 0%, #f8f6f3 100%);
}

.card-clickable::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
  z-index: 1;
}

.card-clickable:hover::after {
  opacity: 0.05;
}

.card-clickable:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 25px 60px rgba(45, 90, 79, 0.2);
  border-color: var(--primary-color);
}

.card-clickable:active {
  transform: translateY(-10px) scale(0.98);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.card:hover img {
  transform: scale(1.05);
  border-radius: 20px;
}

.card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.card:hover h3 {
  color: var(--primary-hover);
}

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
}

/* Enhanced Blog Cards */
.blog-card {
  background: var(--text-white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid var(--border-light);
}

.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.blog-card:hover::before {
  opacity: 0.03;
}

.blog-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(45, 90, 79, 0.15);
  border-color: var(--primary-color);
}

.blog-card .card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  margin-bottom: 0;
  border-radius: 0;
}

.blog-card:hover .card-image img {
  transform: scale(1.1);
}

.blog-card .card-content {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.blog-card .article-meta {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.blog-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-card:hover h3 {
  color: var(--primary-hover);
}

/* Feature Cards with Gradient Backgrounds */
.feature-card {
  background: var(--gradient-secondary);
  border-radius: 25px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    var(--primary-color),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: rotate 20s linear infinite;
}

.feature-card:hover::before {
  opacity: 0.1;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: var(--shadow-strong);
}

.feature-card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-white);
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.feature-card:hover .icon {
  transform: scale(1.1) rotateY(180deg);
}

/* Category Cards */
.category-card {
  background: var(--text-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid var(--border-light);
}

.category-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.category-card:hover::after {
  transform: scaleX(1);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-blue-grey);
}

.category-card .category-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.category-card .category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  margin-bottom: 0;
  border-radius: 0;
}

.category-card:hover .category-image img {
  transform: scale(1.08);
}

.category-card .category-content {
  padding: 2rem;
}

.category-card .category-stats {
  background: var(--accent-cream);
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Stats Section */
.stats {
  background: var(--accent-cream);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.stat-label {
  color: var(--text-light);
  font-style: italic;
}

/* Blog Article Styles */
.article-header {
  text-align: center;
  padding: 3rem 0;
  background: var(--accent-cream);
}

.article-meta {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1rem;
}

.article-content {
  padding: 3rem 0;
}

.article-content img {
  width: 100%;
  max-width: 800px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin: 2rem auto;
  display: block;
  box-shadow: var(--shadow-soft);
}

/* Contact Form */
.contact-form {
  background: var(--text-white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-light);
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Map Container */
.map-container {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* Enhanced Footer */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: var(--text-white);
  padding: 3rem 0 2rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.footer-section {
  text-align: center;
}

.footer-section h3 {
  color: var(--text-white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  position: relative;
  font-weight: 600;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
}

.footer-section p {
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: #cccccc;
  font-size: 0.9rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}

.footer-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.footer-links a:hover::before {
  left: 0;
}

.footer-links a:hover {
  color: var(--text-white);
  transform: translateY(-2px);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.footer-social a {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.footer-social a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.footer-social a:hover::before {
  left: 100%;
}

.footer-social a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.footer-social a:nth-child(1) {
  background: linear-gradient(135deg, #3b5998 0%, #8b9dc3 100%);
}

.footer-social a:nth-child(1):hover {
  background: linear-gradient(135deg, #8b9dc3 0%, #3b5998 100%);
  box-shadow: 0 15px 35px rgba(59, 89, 152, 0.4);
}

.footer-social a:nth-child(2) {
  background: linear-gradient(135deg, #e4405f 0%, #f093fb 100%);
}

.footer-social a:nth-child(2):hover {
  background: linear-gradient(135deg, #f093fb 0%, #e4405f 100%);
  box-shadow: 0 15px 35px rgba(228, 64, 95, 0.4);
}

.footer-social a:nth-child(3) {
  background: linear-gradient(135deg, #1da1f2 0%, #0084b4 100%);
}

.footer-social a:nth-child(3):hover {
  background: linear-gradient(135deg, #0084b4 0%, #1da1f2 100%);
  box-shadow: 0 15px 35px rgba(29, 161, 242, 0.4);
}

.footer-social a:nth-child(4) {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.footer-social a:nth-child(4):hover {
  background: linear-gradient(135deg, #cc0000 0%, #ff0000 100%);
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.4);
}

.footer-contact {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact h4 {
  color: var(--text-white);
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.footer-contact p {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: #cccccc;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-contact p i {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--accent-blue-grey) 0%, #667eea 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
  color: #999;
  font-size: 0.8rem;
  position: relative;
  margin-top: 2rem;
}

.footer-bottom p {
  margin: 0 auto;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--gradient-primary);
}

.footer-bottom .footer-legal {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-bottom .footer-legal a {
  color: #999;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.footer-bottom .footer-legal a:hover {
  color: var(--accent-blue-grey);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--text-white);
  padding: 1rem;
  z-index: 1001;
  display: none;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-text p {
  margin: 0;
  font-size: 0.9rem;
  max-width: none;
}

.cookie-text a {
  color: var(--accent-blue-grey);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

/* Enhanced Responsive Design */
@media (min-width: 576px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .footer-section {
    text-align: left;
  }

  .footer-section h3::after {
    left: 0;
    transform: none;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 0 2rem;
  }

  footer {
    padding: 4rem 0 2rem;
  }

  .footer-section h3 {
    font-size: 1.3rem;
  }

  .footer-section p {
    font-size: 0.95rem;
    max-width: 320px;
    margin: 0 0 1.5rem;
  }

  .footer-links {
    gap: 1.5rem;
  }

  .footer-social {
    gap: 1.5rem;
  }

  .footer-social a {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .footer-contact {
    padding: 2rem;
    border-radius: 15px;
  }

  .footer-contact h4 {
    font-size: 1.1rem;
  }

  .footer-contact p {
    font-size: 0.9rem;
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 3.5rem;
  }

  .footer-section p {
    max-width: 300px;
  }
}

@media (min-width: 1200px) {
  .footer-content {
    padding: 0;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--text-white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-soft);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .nav-toggle {
    display: flex;
  }

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

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .container {
    padding: 0 15px;
  }

  section {
    padding: 2.5rem 0;
  }

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

  .cookie-buttons {
    justify-content: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
  }

  .footer-links a {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    width: fit-content;
  }

  .footer-social {
    gap: 0.8rem;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .footer-contact {
    padding: 1.2rem;
    margin: 1rem 0;
  }

  .footer-contact h4 {
    font-size: 0.95rem;
  }

  .footer-contact p {
    font-size: 0.8rem;
  }

  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .footer-section p {
    font-size: 0.85rem;
    max-width: 250px;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding-top: 1.5rem;
  }

  .footer-bottom .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-bottom .footer-legal a {
    font-size: 0.75rem;
  }
}

/* Animations */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

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

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

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-slide-up {
  animation: slideInUp 0.6s ease-out;
}

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

/* Accessibilité */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus states pour l'accessibilité */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}