/* Variables de couleurs basées sur l'image */
:root {
  --primary-color: #ff5733; /* Orange vif */
  --secondary-color: #1b365d; /* Bleu marine */
  --accent-color: #ffb800; /* Jaune */
  --light-color: #ffffff;
  --background: #f5f5f5;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --dark-blue: #003d5b;
  --light-blue: #90e0ef;
  --light-orange: #ffb703;
  --light-pink: #ffc8dd;
  --light-teal: #8ecae6;
  --dark-text: #1d3557;
  --light-text: #f8f9fa;
  --section-bg: #f8f9fa;
  --footer-bg: #1d3557;
  --transition-fast: 0.2s ease;
}

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

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

body {
  font-family: "Montserrat", sans-serif;
  color: var(--dark-text);
  background-color: var(--background);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 4.5rem;
  letter-spacing: 2px;
}

h2 {
  font-size: 3rem;
  letter-spacing: 1.5px;
}

h3 {
  font-size: 2rem;
  letter-spacing: 1px;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-medium);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Modifier les conteneurs pour utiliser toute la largeur */
.container {
  width: 100%;
  max-width: 100%;
  padding: 0 2rem;
}

/* Ajuster les sections pour utiliser toute la largeur */
section {
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  width: 100%;
}

section {
  padding: 3rem 1rem;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-header.right {
  text-align: right;
}

.geometric-accent {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.2;
  top: -20px;
  left: -30px;
  z-index: -1;
  animation: pulse 3s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }
  100% {
    transform: scale(1.2);
    opacity: 0.1;
  }
}

.highlight {
  color: var(--primary-color);
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  opacity: 0.3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.highlight:hover::after {
  transform: scaleX(1);
}

.highlight-letter {
  position: relative;
  display: inline-block;
  animation: letterPulse 2s infinite;
}

@keyframes letterPulse {
  0%,
  100% {
    color: var(--primary-color);
  }
  50% {
    color: var(--secondary-color);
  }
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-medium);
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.primary-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--light-text);
  box-shadow: 0 4px 15px rgba(247, 166, 0, 0.3);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(247, 166, 0, 0.4);
}

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

.secondary-btn:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
  transform: translateY(-3px);
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(247, 166, 0, 0.5);
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
  display: none;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
  display: none;
}

@media (min-width: 992px) {
  .cursor,
  .cursor-follower {
    display: block;
  }
}

/* Geometric Background Elements */
.geometric-bg {
  position: fixed;
  width: 300px;
  height: 300px;
  z-index: -1;
  opacity: 0.1;
  pointer-events: none;
}

.geometric-bg.top-right {
  top: -100px;
  right: -100px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300"><circle cx="150" cy="100" r="80" fill="%23FF5733"/><circle cx="200" cy="150" r="60" fill="%231B365D"/><rect x="100" y="150" width="100" height="100" fill="%23FF5733"/><path d="M50,50 L100,100 L50,150 Z" fill="%238ECAE6"/></svg>');
  animation: float 15s infinite alternate ease-in-out;
}

.geometric-bg.bottom-left {
  bottom: -100px;
  left: -100px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300"><circle cx="100" cy="200" r="80" fill="%23FFC8DD"/><circle cx="150" cy="150" r="60" fill="%238ECAE6"/><rect x="150" y="50" width="100" height="100" fill="%23FFB703"/><path d="M250,250 L200,200 L250,150 Z" fill="%23FF5733"/></svg>');
  animation: float 20s infinite alternate-reverse ease-in-out;
}

.pattern-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.05;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="30" cy="30" r="3" fill="%23FF5733"/><circle cx="10" cy="10" r="2" fill="%231B365D"/><circle cx="50" cy="50" r="2" fill="%23FFB800"/></svg>');
  background-size: 60px 60px;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(20px, 20px) rotate(5deg);
  }
  100% {
    transform: translate(-20px, 10px) rotate(-5deg);
  }
}

/* Header Styles - Redesigned to take full width */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header-top {
  background-color: var(--secondary-color);
  color: white;
  padding: 0.7rem 0;
  font-size: 0.85rem;
}

/* Ajuster le header pour utiliser toute la largeur */
.header-top .container,
.header-main .container {
  max-width: 100%;
  width: 100%;
  padding: 0 3rem;
}

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

.header-contact {
  display: flex;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
}

.header-social {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  color: white;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  color: var(--accent-color);
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.header-main {
  padding: 1.2rem 0;
  transition: padding 0.3s ease;
}

header.scrolled .header-main {
  padding: 0.8rem 0;
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* Réduit de 2rem à 1.5rem */
  flex: 1.5; /* Réduit de 2 à 1.5 */
}

.logo-img {
  height: 80px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

header.scrolled .logo-img {
  height: 60px;
}

.logo-container:hover .logo-img {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.event-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
  color: var(--primary-color);
  letter-spacing: 1px;
  transition: font-size 0.3s ease;
}

header.scrolled .event-title {
  font-size: 1.4rem;
}

.event-date {
  font-size: 0.85rem;
  color: var(--dark-text);
  letter-spacing: 0.5px;
  transition: font-size 0.3s ease;
}

header.scrolled .event-date {
  font-size: 0.75rem;
}

/* Ajuster le conteneur de navigation pour utiliser plus d'espace */
.nav-container {
  flex: 1.5; /* Augmenté de 1 à 1.5 */
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Ajuster l'espacement entre les liens de navigation pour éviter le retour à la ligne */
.nav-links {
  display: flex;
  gap: 2rem; /* Réduit de 3rem à 2rem */
  margin: 0;
  padding: 0;
}

/* Ajuster la taille de la police pour les liens plus longs */
.nav-link {
  color: var(--dark-text);
  font-size: 0.9rem; /* Réduit de 1rem à 0.9rem */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
  white-space: nowrap; /* Empêche le retour à la ligne */
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

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

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Ajouter un indicateur pour le lien actif */
.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  transform: scaleX(1);
}

/* Adjust main content to account for taller header */
main {
  padding-top: 140px;
}

/* Responsive adjustments for the new header */
@media (max-width: 1200px) {
  .nav-links {
    gap: 1.2rem; /* Réduit davantage pour les écrans moyens */
  }

  .nav-link {
    font-size: 0.85rem; /* Réduit encore la taille pour les écrans moyens */
  }
  .logo-img {
    height: 70px;
  }

  .event-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 992px) {
  .header-contact {
    display: none;
  }

  .header-main .container {
    flex-direction: column;
    gap: 1rem;
  }

  .logo-container {
    justify-content: center;
  }

  .nav-container {
    width: 100%;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 400px;
    background-color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right var(--transition-medium);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    gap: 2rem;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-left: auto;
  }

  main {
    padding-top: 180px;
  }
}

@media (max-width: 768px) {
  .header-top {
    display: none;
  }

  .logo-container {
    flex-direction: column;
    text-align: center;
  }

  .logo-img {
    height: 60px;
  }

  .event-title {
    font-size: 1.2rem;
  }

  .event-date {
    font-size: 0.7rem;
  }

  main {
    padding-top: 150px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 50px;
  }

  .event-title {
    font-size: 1rem;
  }

  .event-date {
    font-size: 0.6rem;
  }

  main {
    padding-top: 130px;
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.bar {
  height: 3px;
  width: 100%;
  background-color: var(--dark-text);
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.geometric-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Ajuster les formes géométriques pour qu'elles s'adaptent à la largeur complète */
.geometric-shapes {
  width: 100%;
}

.shape {
  position: absolute;
  transition: transform 0.5s ease;
}

/* Ajuster les formes géométriques pour qu'elles s'adaptent à la largeur complète */
.geometric-shapes {
  width: 100%;
}

.shape {
  transform: scale(1.2);
}

.circle-orange {
  width: 250px;
  height: 250px;
  left: 5%;
}

.circle-yellow {
  width: 200px;
  height: 200px;
  left: 15%;
}

.triangle-yellow {
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 208px solid #ffb800;
  right: 10%;
}

.quarter-circle-navy {
  width: 400px;
  height: 400px;
}

.circle-navy {
  width: 220px;
  height: 220px;
  right: 15%;
}

.circle-orange {
  width: 200px;
  height: 200px;
  background-color: #ff5733;
  border-radius: 50%;
  top: 5%;
  left: 5%;
}

.circle-yellow {
  width: 150px;
  height: 150px;
  background-color: #ffb800;
  border-radius: 50%;
  bottom: 20%;
  left: 15%;
}

.triangle-yellow {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 173.2px solid #ffb800;
  top: 10%;
  right: 10%;
}

.quarter-circle-navy {
  width: 300px;
  height: 300px;
  background-color: #1b365d;
  border-radius: 0 0 0 300px;
  top: 0;
  right: 0;
}

.circle-navy {
  width: 180px;
  height: 180px;
  background-color: #1b365d;
  border-radius: 50%;
  bottom: 10%;
  right: 15%;
}

/* Ajuster la section hero pour utiliser toute la largeur */
.hero-content {
  max-width: 100%;
  width: 100%;
  padding: 0 2rem;
}

.hero-content {
  max-width: 1200px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-logo {
  margin-bottom: 2rem;
}

.main-logo {
  width: 200px;
  height: auto;
  margin: 0 auto;
}

.hero-title {
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1;
}

.cmd {
  color: #1b365d;
}

.food {
  color: #ff5733;
}

.tour {
  color: #4a4a4a;
}

.hero-subtitle {
  font-size: 3rem;
  color: #1b365d;
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 1rem;
  color: #4a4a4a;
  line-height: 1.6;
}

.hero-location {
  color: #666;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: #ff5733;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #e64a2e;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid #ff5733;
  color: #ff5733;
  background-color: transparent;
}

.btn-outline:hover {
  background-color: #ff5733;
  color: white;
  transform: translateY(-2px);
}

/* Animation du titre FOODTOUR */
.hero-title {
  position: relative;
  margin-bottom: 2rem;
}

.foodtour-title {
  font-size: 8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.foodtour-subtitle {
  font-size: 3rem;
  margin-top: 1rem;
  color: var(--secondary-color);
}

.foodtour-description {
  max-width: 800px;
  margin: 2rem auto;
  font-size: 1.2rem;
}

/* Motifs géométriques inspirés de l'image */
.geometric-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.pattern-shape {
  position: absolute;
  z-index: 1;
}

.pattern-circle {
  border-radius: 50%;
}

.pattern-quarter-circle {
  border-radius: 0 0 100% 0;
}

.pattern-triangle {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.pattern-dots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
  position: absolute;
}

.pattern-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
}

/* Formes spécifiques basées sur l'image */
.shape-1 {
  width: 200px;
  height: 200px;
  background-color: var(--primary-color);
  top: 10%;
  left: 5%;
  opacity: 0.8;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background-color: var(--secondary-color);
  bottom: 15%;
  right: 10%;
  opacity: 0.8;
}

.shape-3 {
  width: 180px;
  height: 180px;
  background-color: var(--accent-color);
  top: 60%;
  left: 15%;
  opacity: 0.8;
}

.shape-4 {
  width: 120px;
  height: 120px;
  background-color: var(--primary-color);
  top: 20%;
  right: 20%;
  opacity: 0.8;
}

.dots-1 {
  top: 30%;
  right: 5%;
}

.dots-2 {
  bottom: 20%;
  left: 10%;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Section Patterns */
.section-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.05;
  pointer-events: none;
}

.section-pattern.right {
  right: 0;
  left: auto;
}

/* Ajuster les motifs de section pour qu'ils s'adaptent à la largeur complète */
.section-pattern .pattern-circle {
  width: 250px;
  height: 250px;
}

.section-pattern .pattern-triangle {
  width: 200px;
  height: 200px;
}

.section-pattern .pattern-dots {
  width: 150px;
  height: 150px;
}

.section-pattern .pattern-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--primary-color);
  top: 10%;
  left: 5%;
}

.section-pattern .pattern-triangle {
  position: absolute;
  width: 150px;
  height: 150px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background-color: var(--secondary-color);
  bottom: 20%;
  right: 10%;
}

.section-pattern .pattern-dots {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(var(--accent-color) 2px, transparent 2px);
  background-size: 15px 15px;
  top: 40%;
  right: 20%;
}

/* About Section */
.about {
  background-color: var(--section-bg);
  position: relative;
}

/* Élargir les contenus des sections */
.about-content,
.chef-content,
.senegal-content,
.zone-content,
.who-content,
.contact-content {
  max-width: 100%;
  width: 100%;
  padding: 0 2rem;
  gap: 4rem;
}

.about-content,
.chef-content,
.senegal-content,
.zone-content,
.who-content {
  gap: 2rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Ajuster les images pour qu'elles s'adaptent mieux */
.image-container {
  width: 100%;
  max-height: 700px;
}

.about-image,
.chef-image,
.senegal-image,
.zone-image,
.who-image {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Animation des images */
.image-container {
  margin: 1rem 0;
  max-height: 600px;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: var(--transition-slow);
  transform: perspective(1000px) rotateY(0deg);
}

.image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    var(--primary-color) 0%,
    transparent 40%,
    var(--secondary-color) 60%,
    var(--accent-color) 100%
  );
  opacity: 0;
  transition: var(--transition-slow);
  z-index: 1;
}

.image-container:hover {
  transform: perspective(1000px) rotateY(5deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.image-container:hover::before {
  opacity: 0.3;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: var(--transition-slow);
  filter: brightness(0.95);
}

.image-container:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-slow);
  z-index: 2;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.overlay-pattern {
  position: relative;
  width: 100%;
  height: 100%;
}

.overlay-circle {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  top: 20%;
  left: 20%;
  transform: scale(0);
  transition: transform 0.5s ease;
}

.overlay-triangle {
  position: absolute;
  width: 60px;
  height: 60px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background-color: rgba(255, 255, 255, 0.2);
  bottom: 20%;
  right: 20%;
  transform: scale(0) rotate(0deg);
  transition: transform 0.5s ease;
}

.image-container:hover .overlay-circle {
  transform: scale(1);
}

.image-container:hover .overlay-triangle {
  transform: scale(1) rotate(360deg);
}

/* Ajuster les colonnes pour une meilleure utilisation de l'espace */
.about-text,
.chef-text,
.senegal-text,
.zone-text,
.who-text,
.about-image,
.chef-image,
.senegal-image,
.zone-image,
.who-image {
  flex: 1;
  padding: 0 1rem;
}

.about-text,
.chef-text,
.senegal-text,
.zone-text,
.who-text {
  flex: 1;
}

/* Nouvelles fonctionnalités pour la section À propos */
.about-text h3 {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.about-text h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.about-features {
  margin: 2rem 0;
}

/* Ajuster les fonctionnalités pour utiliser plus d'espace */
.feature-item {
  padding: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 10px;
  transition: all var(--transition-medium);
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  background-color: white;
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: white;
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover .feature-icon::before {
  opacity: 1;
}

.feature-icon i {
  position: relative;
  z-index: 1;
}

.feature-text h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.about-cta {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--secondary-color);
  padding: 1rem;
  border-radius: 10px;
  background-color: rgba(255, 184, 0, 0.1);
  border-left: 3px solid var(--accent-color);
}

/* Styles pour la section Chef */
.chef-quote {
  position: relative;
  padding: 1.5rem;
  margin-top: 2rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  font-style: italic;
}

.chef-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  border-radius: 5px 0 0 5px;
}

.quote-icon {
  color: var(--primary-color);
  font-size: 1.5rem;
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 15px;
}

.chef-quote p {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.quote-author {
  display: block;
  text-align: right;
  font-weight: 600;
  font-style: normal;
  color: var(--secondary-color);
}

/* Styles pour la section Pourquoi le Sénégal */
.senegal-stats {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
  flex-wrap: wrap;
}

/* Ajuster les statistiques pour utiliser plus d'espace */
.senegal-stats {
  gap: 2rem;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 0.5rem;
  transition: all var(--transition-medium);
}

.stat-item {
  padding: 2rem;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: "Bebas Neue", sans-serif;
}

.stat-symbol {
  font-size: 1.5rem;
  vertical-align: super;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--dark-text);
}

/* Styles pour la section Zone de libre-échange */

/* Styles pour la section Qui sommes-nous */
.who-values {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Ajuster les valeurs pour utiliser plus d'espace */
.who-values {
  gap: 2rem;
}

.value-item {
  flex: 1;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  transition: all var(--transition-medium);
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: white;
  font-size: 1.2rem;
  transition: all var(--transition-medium);
}

.value-item:hover .value-icon {
  transform: rotate(360deg);
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.value-text {
  font-weight: 600;
  color: var(--dark-text);
}

/* Program Section */
.program {
  background-color: var(--section-bg);
  position: relative;
}

/* Élargir les tabs du programme */
.program-tabs {
  max-width: 100%;
  width: 100%;
  padding: 0 2rem;
}

.program-tabs {
  max-width: 1200px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Ajuster les boutons de navigation pour utiliser plus d'espace */
.tab-buttons {
  gap: 2rem;
}

.tab-btn {
  padding: 0.8rem 1.5rem;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.tab-btn {
  padding: 1rem 2rem;
}

.tab-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transition: all 0.3s ease;
  z-index: -1;
}

.tab-btn:hover::before,
.tab-btn.active::before {
  left: 0;
}

.tab-btn.active,
.tab-btn:hover {
  color: var(--light-text);
}

.tab-content {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.tab-pane {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  transform: translateX(50px);
}

.tab-pane.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: translateX(0);
}

.tab-pane.slide-left {
  transform: translateX(-50px);
  opacity: 0;
  visibility: hidden;
}

/* Ajuster les tabs du programme pour utiliser plus d'espace */
.day-content {
  padding: 3rem;
}

.day-details {
  gap: 4rem;
}

.day-content {
  background-color: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.day-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.day-details {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.day-text {
  flex: 1.5;
}

.day-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.note {
  font-style: italic;
  color: var(--secondary-color);
  border-left: 3px solid var(--primary-color);
  padding-left: 1rem;
  margin: 1.5rem 0;
  background-color: rgba(247, 166, 0, 0.05);
  padding: 1rem;
  border-radius: 0 10px 10px 0;
}

/* Contact Section */
.contact {
  background-color: var(--section-bg);
  position: relative;
}

/* Ajuster les formulaires et informations de contact */
.contact-form,
.contact-info {
  flex: 1;
  padding: 0 1rem;
}

/* Élargir les contenus des sections */
.about-content,
.chef-content,
.senegal-content,
.zone-content,
.who-content,
.contact-content {
  max-width: 100%;
  width: 100%;
  padding: 0 2rem;
  gap: 4rem;
}

.contact-content {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

.contact-form,
.contact-info {
  flex: 1;
}

.contact-form form {
  background-color: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form form:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
  transition: border-color var(--transition-medium), box-shadow var(--transition-medium);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(247, 166, 0, 0.1);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateX(10px);
}

.info-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.social-media {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-icon:hover::before {
  opacity: 1;
}

.social-icon i {
  position: relative;
  z-index: 1;
}

.social-icon:hover {
  transform: translateY(-3px) rotate(10deg);
  box-shadow: 0 5px 15px rgba(247, 166, 0, 0.3);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--secondary-color), var(--dark-blue));
  color: var(--light-text);
  padding: 4rem 2rem 1rem;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

/* Ajuster le footer pour utiliser toute la largeur */
.footer-content {
  max-width: 100%;
  width: 100%;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

.footer-logo {
  flex: 1;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-links {
  flex: 2;
  display: flex;
  justify-content: space-between;
}

.footer-column h4 {
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.footer-column ul li {
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}

.footer-column ul li:hover {
  transform: translateX(5px);
}

.footer-column ul li a {
  transition: color var(--transition-medium);
}

.footer-column ul li a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animation Classes */
.reveal-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-section.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-text.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-element.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

.delay-4 {
  transition-delay: 0.8s;
}

.image-reveal {
  position: relative;
  overflow: hidden;
}

.image-reveal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: 2;
  transform: translateX(-100%);
  transition: transform 1s cubic-bezier(0.7, 0, 0.3, 1);
}

.image-reveal.active::before {
  transform: translateX(100%);
}

.image-zoom-effect img {
  transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.image-zoom-effect:hover img {
  transform: scale(1.15);
}

.parallax-img {
  transition: transform 0.5s ease;
}

/* Responsive Styles */
@media (max-width: 992px) {
  html {
    font-size: 14px;
  }

  /* Enhanced mobile menu */
  .logo-img {
    height: 60px;
  }

  header.scrolled .logo-img {
    height: 50px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1001;
  }

  .menu-toggle:hover {
    transform: scale(1.1);
  }

  .bar {
    height: 3px;
    width: 100%;
    background-color: var(--dark-text);
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .nav-links.active + .menu-toggle .bar:nth-child(1),
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .nav-links.active + .menu-toggle .bar:nth-child(2),
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-links.active + .menu-toggle .bar:nth-child(3),
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 400px;
    background-color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    gap: 2.5rem;
    padding: 2rem;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-link::after {
    bottom: -2px;
    height: 3px;
  }

  .header-top .container,
  .header-main .container {
    padding: 0 1.5rem;
  }

  .header-contact {
    gap: 1rem;
  }

  .hero-content,
  .about-content,
  .chef-content,
  .senegal-content,
  .zone-content,
  .who-content,
  .contact-content,
  .day-details {
    flex-direction: column;
  }

  .hero-image,
  .day-image {
    order: -1;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }

  .foodtour-title {
    font-size: 5rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 12px;
  }

  section {
    padding: 2rem 0.5rem;
  }

  .tab-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .foodtour-title {
    font-size: 4rem;
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .about-text h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Styles responsifs pour les nouvelles sections */
@media (max-width: 768px) {
  .hero-image {
    max-height: 70vh;
  }

  .image-container {
    max-height: 400px;
  }

  section {
    padding: 2rem 0.5rem;
  }

  .senegal-stats,
  .who-values {
    flex-direction: column;
  }

  .stat-item,
  .value-item {
    margin-bottom: 1rem;
  }

  .chef-quote {
    padding: 1rem;
  }

  .campaign-slogan {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .foodtour-title {
    font-size: 3rem;
  }
}

/* Updated hero section styles */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .shape {
    transform: scale(0.7);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .main-logo {
    width: 150px;
  }

  .shape {
    transform: scale(0.5);
  }
}

/* Hero Section Animations */
.animate-float {
  animation: float 6s ease-in-out infinite alternate;
}

.animate-float-delay {
  animation: float 8s ease-in-out infinite alternate;
  animation-delay: 1s;
}

.animate-float-reverse {
  animation: float 7s ease-in-out infinite alternate-reverse;
}

.animate-rotate {
  animation: rotate 20s linear infinite;
}

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

.animate-fade {
  animation: fadeIn 2s ease-out forwards;
}

.animate-reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 1s ease-out forwards;
}

.animate-reveal-delay {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 1s ease-out 0.3s forwards;
}

.animate-reveal-delay-2 {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 1s ease-out 0.6s forwards;
}

.animate-reveal-delay-3 {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 1s ease-out 0.9s forwards;
}

.animate-reveal-delay-4 {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 1s ease-out 1.2s forwards;
}

.animate-chars .cmd,
.animate-chars .food,
.animate-chars .tour {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
}

.animate-chars .cmd {
  animation: reveal 0.8s ease-out 0.2s forwards;
}

.animate-chars .food {
  animation: reveal 0.8s ease-out 0.5s forwards;
}

.animate-chars .tour {
  animation: reveal 0.8s ease-out 0.8s forwards;
}

.dots-pattern {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, var(--accent-color) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.3;
  top: 40%;
  right: 15%;
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.3;
  }
}

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

