/* Color Palette */
/* =====================================================
   FORCE LIGHT MODE – DISABLE DARK MODE COMPLETELY
   ===================================================== */

/* Le site est TOUJOURS en mode clair */
:root {
  color-scheme: light;

  --background: #ffffff;
  --foreground: #1f1f1f;
  --card: #ffffff;
  --secondary: #f5f3f0;
  --muted: #f0f0f0;
  --border: #e5e5e5;
  --primary: #5bb12f;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --line-height: 1.6;
  --spacing: 1rem;
}

/* Empêche les OS / navigateurs d'imposer le dark */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light;
  }
  .hero-section {
    background-color:#ffffff;;
    
}

  html,
  body {
    background-color: #ffffff;
    color: #1f1f1f !important;
  }
}

/* Sécurité maximale */
html,
body {
  background-color: #ffffff !important;
  color: #1f1f1f;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  line-height: 1.6;
}

/* Container - responsive */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  padding: 20px;
}
@media (max-width: 768px) {
  .container { padding: 0 16px; padding: 16px; }
}
@media (max-width: 480px) {
  .container { padding: 0 12px; padding: 12px; }
}


/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 700;
}

p {
  color: var(--muted-foreground);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--foreground);
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(var(--background), 0.95);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.logo .icon-primary {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.nav-desktop {
  display: none;
  gap: 2rem;
  flex: 1;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: green;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: background 0.3s ease;
}

.icon-btn:hover {
  background: var(--secondary);
}

.icon-sm {
  width: 1.25rem;
  height: 1.25rem;
  color:black;
}

.btn-sm {
  display: none;
}

@media (min-width: 640px) {
  .btn-sm {
    display: inline-flex;
  }
}

.nav-toggle {
  display: flex;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: calc(var(--radius) - 0.5rem);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
}

.btn-primary {
display: inline-block;
    background: #5bb12f;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
button.btn.btn-primary.btn-lg {
    display: inline-block;
    background: #5bb12f;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-primary:hover {
  background: var(--primary);
  opacity: 0.9;
}

.btn-outline {
    background: #ffffff !important;
    color: var(--foreground);
    border: 1px solid var(--border);
    border-radius: 50PX;
}

.btn-outline:hover {
  background: var(--secondary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-md {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.w-full {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: var(--secondary);
  padding: 1rem 0;
}


.hero-section .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-section .container {
    grid-template-columns: 1fr 1fr;
      padding: 1rem 0;
  }
}

.hero-content {
  max-width: 48rem;
  position: relative;
  z-index: 10;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: rgba(59, 155, 93, 0.1);
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.icon-xs {
  width: 1rem;
  height: 1rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.text-primary {
  color: var(--primary);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
  max-width: 32rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .hero-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: white;
  flex-shrink: 0;
}

.icon-md {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-text {
  font-weight: 500;
}

.hero-image {
  position: relative;
  display: none;
}

@media (min-width: 1024px) {
  .hero-image {
    display: block;
  }
}

.blur-circle {
  position: absolute;
  right: -40%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  background: rgba(59, 155, 93, 0.05);
  border-radius: 50%;
  filter: blur(120px);
}

.hero-img {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 600px;
  object-fit: contain;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.1));
  animation: fadeInZoom 1s ease-out;
}

@keyframes fadeInZoom {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.competition-framework {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.intro {
  max-width: 800px;
  margin-bottom: 30px;
  color: #555;
}

.framework-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin-bottom: 40px;
}

.framework-buttons button {
  background: #5a1f0f;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.framework-content {
  display: none;
  margin-top: 30px;
}

.framework-content h3 {
  background: #5a1f0f;
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 6px;
  margin-bottom: 20px;
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.allowed h4 {
  color: green;
}

.forbidden h4 {
  color: darkred;
}

ul {
  padding-left: 18px;
}

<style>.framework-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.framework-modal-content {
  background: #fff;
  width: 90%;
  max-width: 700px;
  padding: 30px;
  border-radius: 16px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 26px;
  border: none;
  background: none;
  cursor: pointer;
}

.modal-section {
  display: none;
}

</style>

/* About Section */
.about-section {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .about-section {
    padding: 6rem 0;
  }
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-images {
  position: relative;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.image-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
  object-fit: cover;
}

.about-img:hover {
  transform: scale(1.02);
}

.about-img:nth-child(1) {
  aspect-ratio: 4 / 5;
}

.about-img:nth-child(2) {
  aspect-ratio: 1;
}

.about-img:nth-child(3) {
  aspect-ratio: 1;
}

.about-img:nth-child(4) {
  aspect-ratio: 4 / 5;
}

.satisfaction-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(59, 155, 93, 0.1);
  text-align: center;
  display: none;
}

@media (min-width: 768px) {
  .satisfaction-badge {
    display: block;
  }
}

.badge-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
}

.badge-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  white-space: nowrap;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-label {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.about-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .about-title {
    font-size: 3rem;
  }
}

.italic {
  font-style: italic;
}

.about-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.about-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .about-checklist {
    grid-template-columns: 1fr 1fr;
  }
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--secondary);
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.checklist-item:hover {
  background: rgba(0, 0, 0, 0.03);
}

.about-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1rem;
}

@media (min-width: 640px) {
  .about-actions {
    flex-direction: row;
    align-items: center;
  }
}

.btn-play {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-play:hover .icon-lg {
  transform: scale(1.1);
}

.icon-lg {
  width: 2.5rem;
  height: 2.5rem;
  transition: transform 0.3s ease;
}

/* News Section */
.news-section {
  padding: 6rem 0;
}

.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .news-header {
    flex-direction: row;
  }
}

.news-title {
  font-size: 2.25rem;
  font-weight: 700;
}

.news-subtitle {
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.link-btn {
  color: var(--primary);
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}

.link-btn:hover {
  opacity: 0.8;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.news-card {
  border: 1px solid #edebe8;
  background: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.news-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.news-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-img {
  transform: scale(1.05);
}

.news-body {
  padding: 2rem;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.news-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(59, 155, 93, 0.1);
  color: var(--primary);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.news-date {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.news-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.news-card:hover .news-card-title {
  color: var(--primary);
}

.news-excerpt {
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background: var(--secondary);
  overflow: hidden;
}

.testimonials-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-scroll {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll 40s linear infinite;
  width: fit-content;
}

.testimonials-scroll:hover .testimonials-track {
  animation-play-state: paused;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% / 2 - 12px));
  }
}

.testimonial-card {
  flex-shrink: 0;
  width: 350px;
  padding: 2rem;
  background: white;
  border-radius: 1.875rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.02);
}

.quote-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(59, 155, 93, 0.2);
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.author-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
}

.contact-section--nutrition {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  background: transparent;
  color: #163a2a;
}

.contact-section--nutrition .contact-form .form-group input,
.contact-section--nutrition .contact-form .form-group textarea {
  background: #fff !important;
  color: #163a2a !important;
  border-radius: 999px !important;
}

.contact-section--nutrition .contact-form .form-group textarea {
  border-radius: 30px !important;
}

.contact-box {
  background: rgba(59, 155, 93, 0.05);
  border: 1px solid rgba(59, 155, 93, 0.1);
  border-radius: 3rem;
  padding: 2rem 2rem;
}

@media (min-width: 768px) {
  .contact-box {
    padding: 4rem;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(59, 155, 93, 0.1);
  color: var(--primary);
  flex-shrink: 0;
}

.contact-label {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-value {
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--card);
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.02);
  border: none;
  color:#000 !important;
  border-radius: 0.75rem;
  font-family: var(--font-sans);
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  background: var(--background);
  box-shadow: 0 0 0 2px var(--primary);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background: var(--card);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-legal {
    justify-content: flex-end;
  }
}

.footer-legal a {
  color: var(--muted-foreground);
}

.footer-legal a:hover {
  color: var(--primary);
}

/* Footer social icons */
footer.footer .footer-social {
  display: block;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}
footer.footer .footer-social__title {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}
footer.footer .footer-social__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
footer.footer .footer-social__link {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  text-decoration: none !important;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
footer.footer .footer-social__link i {
  font-size: 18px;
  line-height: 1;
  color: #fff;
}
footer.footer .footer-social__link:hover {
  transform: translateY(-3px);
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}
footer.footer .footer-social__link--facebook:hover { background: #1877f2; border-color: #1877f2; }
footer.footer .footer-social__link--instagram:hover { background: #e4405f; border-color: #e4405f; }
footer.footer .footer-social__link--youtube:hover { background: #ff0000; border-color: #ff0000; }
footer.footer .footer-social__link--tiktok:hover { background: #010101; border-color: #25f4ee; }
footer.footer .footer-social__link--linkedin:hover { background: #0a66c2; border-color: #0a66c2; }

/* Utilities */
.icon-primary {
  color: var(--primary);
}

/* About Page Styles */
.about-hero {
   color: white;
  padding: 120px 20px;
  text-align: center;
 }

.about-hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease-out;
}

.about-hero-content p {
  font-size: 1.3rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.mission-section {
  padding: 80px 20px;
  background-color: #f9f7f4;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.mission-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #1a4d2e;
  margin-bottom: 15px;
}

.mission-card p {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}

.mission-icon {
  font-size: 3rem;
  position: absolute;
  top: 20px;
  right: 25px;
  opacity: 0.3;
}

.team-section {
  padding: 80px 20px;
  background-color: white;
}

.team-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  text-align: center;
  color: #1a4d2e;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #888;
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.team-member:hover img {
  transform: scale(1.05);
}

.team-member h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: #1a4d2e;
  margin-bottom: 5px;
}

.team-member .role {
  color: #2d7a4a;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.team-member .bio {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.journey-section {
  padding: 80px 20px;
  background-color: #f9f7f4;
}

.journey-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  text-align: center;
  color: #1a4d2e;
  margin-bottom: 60px;
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #2d7a4a, #1a4d2e);
  top: 0;
}

.timeline-item {
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  margin-left: 0;
  margin-right: 50%;
  text-align: right;
  padding-right: 40px;
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  margin-right: 0;
  text-align: left;
  padding-left: 40px;
}

.timeline-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background: white;
  border: 3px solid #2d7a4a;
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: #1a4d2e;
  margin-bottom: 8px;
}

.timeline-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-choose {
  padding: 80px 20px;
  background-color: white;
}

.why-choose h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  text-align: center;
  color: #1a4d2e;
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit {
  background: linear-gradient(135deg, #f0f7f3 0%, #e8f3ed 100%);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #2d7a4a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(45, 122, 74, 0.15);
}

.benefit h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: #1a4d2e;
  margin-bottom: 12px;
}

.benefit p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, #1a4d2e 0%, #2d7a4a 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.cta-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
  animation: fadeInDown 0.8s ease-out;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.cta-button {
  display: inline-block;
  background-color: #fff;
  color: #1a4d2e;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-button:hover {
  background-color: #f0f7f3;
  transform: scale(1.05);
}

/* Modern About Page Styles */

.about-hero-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 20px;
 }

.about-hero-text {
  max-width: 500px;
}

.about-label {
  display: inline-block;
  background: #5bb12f;
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-hero-modern h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  color: #1a4d2e;
  margin-bottom: 20px;
  line-height: 1.1;
}

.about-hero-modern p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: #1a4d2e;
  margin-bottom: 5px;
}

.stat p {
  color: #888;
  font-size: 0.9rem;
  margin: 0;
}

.about-hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(45, 122, 74, 0.15);
  animation: fadeInRight 0.8s ease-out;
}

/* Values Section */
.values-section {
  padding: 80px 20px;
  background: white;
}

.values-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: #1a4d2e;
  text-align: center;
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: linear-gradient(135deg, #f0f7f3 0%, #e8f3ed 100%);
  padding: 40px;
  border-radius: 16px;
  border-left: 4px solid #2d7a4a;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(45, 122, 74, 0.12);
}

.value-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #2d7a4a;
  opacity: 0.3;
  margin-bottom: 15px;
}

.value-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: #1a4d2e;
  margin-bottom: 12px;
}

.value-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Team Section Modern */
.team-section-modern {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.03) 0%, rgba(45, 122, 74, 0.03) 100%);
}

.team-section-modern h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: #1a4d2e;
  text-align: center;
  margin-bottom: 10px;
}

.section-desc {
  text-align: center;
  color: #888;
  margin-bottom: 60px;
  font-size: 1.1rem;
}

.team-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card-modern {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(45, 122, 74, 0.15);
}

.team-card-modern img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.team-info {
  padding: 30px;
}

.team-card-modern h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: #1a4d2e;
  margin-bottom: 5px;
}

.team-card-modern .role {
  color: #2d7a4a;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.team-card-modern .bio {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Impact Section */
.impact-section {
  padding: 80px 20px;
  background: white;
}

.impact-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: #1a4d2e;
  text-align: center;
  margin-bottom: 60px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.impact-card {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f0f7f3 0%, #e8f3ed 100%);
  transition: transform 0.3s ease;
}

.impact-card:hover {
  transform: scale(1.05);
}

.impact-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.impact-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: #1a4d2e;
  margin-bottom: 10px;
}

.impact-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Difference Section */
.difference-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.05) 0%, rgba(45, 122, 74, 0.05) 100%);
}

.difference-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: #1a4d2e;
  text-align: center;
  margin-bottom: 60px;
}

.difference-content {
  display: grid;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.diff-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.diff-item:nth-child(even) {
  direction: rtl;
}

.diff-item:nth-child(even) h3,
.diff-item:nth-child(even) p {
  direction: ltr;
}

.diff-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #1a4d2e;
  margin-bottom: 15px;
}

.diff-item p {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.diff-item img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(45, 122, 74, 0.12);
}

/* CTA Section About */
.cta-section-about {
  background: linear-gradient(135deg, #1a4d2e 0%, #2d7a4a 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.cta-section-about h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-section-about p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.btn-primary {
display: inline-block;
    background: #5bb12f;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #f0f7f3;
      color: : #5bb12f;

  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 2.5rem;
  }

  .team-grid,
  .mission-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
    padding-left: 60px;
    text-align: left;
  }

  .timeline-dot {
    left: 20px;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  /* Animations */
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animations */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero-modern {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 60px 20px;
  }

  .about-hero-modern h1 {
    font-size: 2.2rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .difference-content .diff-item {
    grid-template-columns: 1fr;
  }

  .diff-item:nth-child(even) {
    direction: ltr;
  }

  .values-grid,
  .team-grid-modern,
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

/* Language Selector Styles */
.language-selector {
  position: relative;
  margin-left: auto;
  padding-left: 20px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid #2d7a4a;
  color: #1a4d2e;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.lang-btn:hover {
  background: #f0f7f3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(45, 122, 74, 0.2);
}

.lang-flag {
  font-size: 1.2rem;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  margin-top: 10px;
  display: none;
  z-index: 1000;
  overflow: hidden;
}

.lang-dropdown.active {
  display: block;
  animation: slideDown 0.3s ease-out;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: none;
  border: none;
  padding: 12px 16px;
  text-align: left;
  cursor: pointer;
  font-size: 0.95rem;
  color: #333;
  transition: all 0.2s ease;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.lang-option:hover {
  background: #f0f7f3;
  color: #1a4d2e;
  padding-left: 20px;
}

.lang-option span:first-child {
  font-size: 1.2rem;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Language Selector */
@media (max-width: 768px) {
  .language-selector {
    padding-left: 10px;
  }

  .lang-btn {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .lang-code {
    display: none;
  }
}

/* CHANGE: Adding Programs Section Styles */
.programs-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f9f7f4 0%, #f0f7f3 100%);
}
.media-hero {
  text-align: left !important;
}
.programs-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  background: #2d7a4a;
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.programs-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: #1a4d2e;
  margin-bottom: 15px;
  line-height: 1.2;
}

.programs-header .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto 80px;
}

.program-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(45, 122, 74, 0.15);
}

.program-card.featured {
  border: 2px solid #2d7a4a;
  transform: scale(1.02);
}

.program-card.featured:hover {
  transform: scale(1.02) translateY(-10px);
}

.program-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #2d7a4a 0%, #1a4d2e 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.program-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: inline-block;
}

.program-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #1a4d2e;
  margin-bottom: 12px;
}

.program-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.program-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.program-features li {
  color: #666;
  font-size: 0.95rem;
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  line-height: 1.5;
}

.program-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2d7a4a;
  font-weight: bold;
  font-size: 1.2rem;
}

.program-price {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: #1a4d2e;
  font-weight: 600;
  margin-bottom: 20px;
}

.btn-program {
  padding: 12px 30px;
  border: 2px solid #2d7a4a;
  background: transparent;
  color: #1a4d2e;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.btn-program:hover {
  background: #f0f7f3;
  transform: translateY(-2px);
}

.btn-program.btn-primary {
  background: linear-gradient(135deg, #2d7a4a 0%, #1a4d2e 100%);
  color: white;
  border-color: transparent;
}

/* ===== MEDIA PAGE STYLES ===== */


.media-hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease-out;
}

.media-hero-content p {
  font-size: 1.3rem;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.press-section {
  padding: 100px 20px;
  background: white;
}

.press-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  color: #1a4d2e;
  text-align: center;
  margin-bottom: 70px;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.press-article {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.press-article:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(45, 122, 74, 0.12);
  border-color: #2d7a4a;
}

.press-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f7f3;
}

.press-source {
  display: inline-block;
  background: linear-gradient(135deg, #2d7a4a 0%, #1a4d2e 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.press-date {
  color: #999;
  font-size: 0.9rem;
  font-weight: 600;
}

.press-article h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: #1a4d2e;
  margin-bottom: 15px;
  line-height: 1.3;
}

.press-article p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  display: inline-block;
  color: #2d7a4a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.read-more::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: #2d7a4a;
  transition: width 0.3s ease;
}

.read-more:hover::after {
  width: 100%;
}

.media-partners {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9f7f4 0%, #f0f7f3 100%);
  text-align: center;
}

.media-partners h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: #1a4d2e;
  margin-bottom: 60px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
      padding: 10px 0px;
}

.partner-logo {
  background: white;
  padding: 30px;
  border-radius: 12px;
  font-weight: 600;
  color: #666;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.partner-logo:hover {
  color: #2d7a4a;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(45, 122, 74, 0.12);
}

.media-kit-section {
  background: linear-gradient(135deg, #1a4d2e 0%, #2d7a4a 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.media-kit-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.media-kit-content p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* ===== SPEAKERS PAGE STYLES ===== */
.speakers-hero {
  background: linear-gradient(135deg, #1a4d2e 0%, #2d7a4a 100%);
  color: white;
  padding: 140px 20px;
  text-align: center;
}

section.section {
  margin-top: 10%;
}


.speakers-hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease-out;
}

.speakers-hero-content p {
  font-size: 1.3rem;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.speakers-section {
  padding: 100px 20px;
  background: white;
}

.speakers-section>h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  color: #000;
  text-align: center;
  margin-bottom: 70px;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
}

.values-section {
  background-image: url('{{ asset("build/assets/images/image--1.jpeg") }}');
  /* mettez le nom correct */
  background-size: cover;
  /* couvre toute la section */
  background-position: center;
  /* centre l'image */
  background-repeat: no-repeat;
  /* pas de répétition */
  padding: 80px 0;
  /* espace interne */
  position: relative;
  color: #fff;
}

/* Overlay pour améliorer la lisibilité du texte */
.values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* semi-transparent noir */
  z-index: 0;
}

.values-section>.values-container {
  position: relative;
  z-index: 1;
}

.speaker-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.speaker-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(45, 122, 74, 0.15);
}

.speaker-image {
  position: relative;
  overflow: hidden;

}

.speaker-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.speaker-card:hover .speaker-image > img {
  transform: scale(1.05);
}

.speaker-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 77, 46, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.speaker-card:hover .speaker-overlay {
  opacity: 1;
}

.bio-toggle {
  background: white;
  color: #1a4d2e;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
}

.bio-toggle:hover {
  background: #f0f7f3;
}

.speaker-info {
  padding: 30px;
  text-align: center;
}

.speaker-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: #1a4d2e;
  margin-bottom: 8px;
}

.speaker-title {
  color: #2d7a4a;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px !important;
}

.speaker-expertise {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 !important;
}

.speaker-bio {
  padding: 30px;
  background: #f9f7f4;
  display: none;
  border-top: 2px solid #e5e5e5;
}

.speaker-bio p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.speaker-bio p:last-of-type {
  margin-bottom: 0;
}

.speaker-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.speaker-credentials span {
  display: inline-block;
  background: #2d7a4a;
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #2d7a4a;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #1a4d2e;
  transform: translateY(-3px);
}

.speaking-engagements {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9f7f4 0%, #f0f7f3 100%);
}

.speaking-engagements h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: #1a4d2e;
  text-align: center;
  margin-bottom: 60px;
}

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.engagement-item {
  background: white;
  padding: 35px;
  border-radius: 12px;
  border-left: 4px solid #2d7a4a;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.engagement-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(45, 122, 74, 0.12);
}

.engagement-date {
  display: inline-block;
  background: #2d7a4a;
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.engagement-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: #1a4d2e;
  margin-bottom: 10px;
}

.engagement-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.engagement-location {
  display: block;
  color: #2d7a4a;
  font-weight: 600;
  font-size: 0.9rem;
}

.booking-section {
  background: linear-gradient(135deg, #1a4d2e 0%, #2d7a4a 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.booking-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.booking-content p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a4d2e 0%, #2d7a4a 100%);
  color: white;
  padding: 60px 20px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-bottom p {
  color: white;
}

.footer-legal a {
  color: white;
}

.footer-section h3,
.footer-section h4 {
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #f0f7f3;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.7);
}

/* Navbar */
.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

footer.footer {
  background: #5bb12f!important;
}

p.footer-description {
  color: white;
}

.footer-grid li a {
  color: white;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.navbar-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #1a4d2e;
  margin: 0;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  gap: 40px;
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #2d7a4a;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #2d7a4a;
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f9f7f4 0%, #f0f7f3 100%);
}

.contact-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(45, 122, 74, 0.1);
  animation: slideInUp 0.8s ease-out;
}

.contact-form-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: #1a4d2e;
  margin-bottom: 10px;
  text-align: center;
}

.contact-form-content>p {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row.full-width {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.contact-form label {
  font-weight: 600;
  color: #1a4d2e;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #333;
  transition: all 0.3s ease;
  background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2d7a4a;
  background: white;
  box-shadow: 0 0 0 3px rgba(45, 122, 74, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #bbb;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  font-family: "Inter", sans-serif;
}

.form-submit-btn {
  background: linear-gradient(135deg, #2d7a4a 0%, #1a4d2e 100%);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 20px;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(45, 122, 74, 0.3);
}

.form-submit-btn:active {
  transform: translateY(0);
}

.form-success-message {
  background: linear-gradient(135deg, #f0f7f3 0%, #e8f5f0 100%);
  border: 2px solid #2d7a4a;
  padding: 20px 24px;
  border-radius: 10px;
  text-align: center;
  animation: slideInUp 0.5s ease-out;
}

.form-success-message p {
  color: #1a4d2e;
  font-weight: 600;
  margin: 0;
  font-size: 1rem;
}

/* Keyframe Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 15px;
  }

  .media-hero-content h1,
  .speakers-hero-content h1 {
    font-size: 2.5rem;
  }

  .press-grid,
  .speakers-grid {
    grid-template-columns: 1fr;
  }

  .media-partners h2,
  .speaking-engagements h2 {
    font-size: 2rem;
  }

  .contact-form-container {
    padding: 40px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-content h2 {
    font-size: 1.8rem;
  }
}

.nav-item {
  position: relative;
}

.has-submenu::after {
  content: "▾";
  margin-left: 6px;
  font-size: 12px;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  min-width: 520px;
  display: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  gap: 24px;
  z-index: 100;
}

.submenu.single {
  min-width: 220px;
  display: none;
  flex-direction: column;
}

.submenu-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.submenu-title {
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}

.submenu a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

.submenu a:hover {
  color: #000;
}

.submenu.open {
  display: flex;
}

/* Hover desktop */
.nav-item:hover>.submenu {
  display: flex;
}

.lang-switcher {
  position: relative;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.jury-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3%;
  border-radius: calc(var(--radius) + 4px);
}

.container.grid-2 {
  margin-top: 2%;
}

section.section {
  BACKGROUND: #fafafa;
  margin-top: 10%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-color: var(--border);
}

.jury-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
}

.hero-competition {
  position: relative;
  min-height: 90vh;
  background: url("build/assets/images/baguette-healthy.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Global */
.competition-form {
  max-width: 900px;
  margin: 4rem auto;
  background: #ffffff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
  font-family: "Inter", system-ui, sans-serif;
}

/* Titles */
.competition-form h2 {
  font-size: 1.6rem;
  margin: 3rem 0 1.5rem;
  color: #2f4f2f;
  border-left: 5px solid #7cc576;
  padding-left: 1rem;
}

.competition-form h4 {
  margin-top: 1.5rem;
  color: #444;
}

/* Labels */
.competition-form label {
  display: block;
  font-weight: 600;
  margin: 1.2rem 0 0.4rem;
  color: #333;
}

/* Inputs */
.competition-form input[type="text"],
.competition-form input[type="email"],
.competition-form input[type="tel"],
.competition-form input[type="url"],
.competition-form select,
.competition-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #fafafa;
  font-size: 0.95rem;
  transition: 0.3s;
}

.competition-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Focus */
.competition-form input:focus,
.competition-form textarea:focus,
.competition-form select:focus {
  outline: none;
  border-color: #7cc576;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(124, 197, 118, 0.15);
}

/* Groups */
.checkbox-group,
.radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.6rem 1rem;
  margin-top: 0.6rem;
}

.checkbox-group label,
.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f4f8f4;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.checkbox-group label:hover,
.radio-group label:hover {
  background: #e9f4ea;
}

/* Checkboxes & radios */
.checkbox-group input,
.radio-group input {
  accent-color: #7cc576;
}

/* File input */
.competition-form input[type="file"] {
  background: #f7f7f7;
  padding: 1rem;
  border-radius: 12px;
}

/* Submit button */
.submit-btn {
  margin-top: 3rem;
  width: 100%;
  padding: 1.1rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #7cc576, #4caf50);
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

/* Responsive */
@media (max-width: 600px) {
  .competition-form {
    padding: 2rem 1.5rem;
  }
}

.hero-content {
  position: relative;
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-content h1 span {
  color: #5bb12f;
  /* green healthy accent */
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.95;
}

.jury-card img {
  width: 100%;
  border-radius: 12px;
}

.details-list li {
  margin-bottom: 10px;
}

.jury-card {
  background: #f0b1001f;
}

.lang-menu {
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.lang-menu a {
  display: block;
  padding: 6px 12px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
}

.lang-menu a:hover {
  background: #f3f3f3;
  border-radius: 6px;
}

.lang-switcher:hover .lang-menu {
  display: block;
}

.hero-secondary {
  padding: 1px 20px !important;
  text-align: center;
  background: linear-gradient(to right, #4CAF50, rgba(255, 255, 255, 1));
}

.hero-secondary h2 {
  font-size: clamp(2.2rem, 5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero-secondary h2 span {
  color: #5bb12f;
}

.hero-secondary p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #555;
}

/* Modal */
.speaker-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.speaker-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.speaker-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

.speaker-modal-content {
  position: relative;
  background: #fff;
  max-width: 800px;
  width: 90%;
  border-radius: 16px;
  padding: 2rem;
  z-index: 10;
  animation: scaleIn 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

.modal-image img {
  width: 100%;
  border-radius: 12px;
}

.modal-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.modal-title {
  font-weight: 600;
  color: #ca8a04;
  margin-bottom: 1rem;
}

.modal-bio {
  line-height: 1.6;
  color: #444;
}

.modal-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.modal-credentials span {
  background: #fef3c7;
  color: #92400e;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .modal-body {
    grid-template-columns: 1fr;
  }
}