@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  
  background-color: #fff8e7;
  color: #333;
}


header {
  text-align: center;
  padding-top:0px;
  
}

header img {
  width: 100%;
  height: auto;
}

header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 20px 0 10px;
  color: #222;
  letter-spacing: -1px;
}

header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  color: #444;
}


main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
main h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 20px 0;
}

main h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 20px 0;
}

main p {
  font-size: 1.1rem;
  margin: 10px 0;
  line-height: 1.6;
}

/* Hero Section */

.hero-bg {
  background: linear-gradient(180deg, #ffe066 0%, #fff8e7 100%);
  width: 100%;
  padding: 0;
}

.hero {
  display: flex;
  width: 100%;
  max-width: 100%;
  padding-top: 0px;
  margin: 0 auto;
  text-align: center;
  justify-content: center; /* center contents horizontally */
  align-items: center;
  padding: 15px 20px;
  background: transparent; /* let gradient show */
  position: relative;
}

.logo {
  height: auto;
  width: 30%;
  margin-bottom: 0px;
   margin: 0 auto; /* center it */
}


.hero h1 {
  font-size: 4.5rem;
  font-weight: 900;
  margin: 0 0 24px;
  color: #222;
  letter-spacing: -1px;
}

.subtitle {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 24px;
}




/* HAMBURGER */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 2000;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span {
  display: block;
  height: 3px;
  background: #444;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Symmetrical X animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
  transform-origin: center;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
  transform-origin: center;
}

/* MENU */
.nav-menu {
  background: transparent;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.nav-menu.active {
  max-height: 300px; /* hauteur suffisante pour tout afficher */
  opacity: 1;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu ul li {
  border-bottom: 1px solid #eee;
}

.nav-menu ul li a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  transition: background 0.3s;
}

.nav-menu ul li a:hover {
  background: #f0f0f0;
}

/* Story of the team Section */

.story {
  padding: 10px 20px;
  text-align: center;
}

.story h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 800;
}

.story p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

/* Presentation of team members section */
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 16px;
  align-items: stretch; /* Étire toutes les colonnes à la hauteur max */
}

.column {
  flex: 1 1 30%;
  max-width: 30%;
  box-sizing: border-box;
  padding: 0 8px;
  display: flex; /* Permet d'étirer la carte */
}

.card {
  flex: 1; /* Remplit toute la hauteur disponible */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 16px;
  padding-bottom: 16px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column; /* Pour garder un bon alignement interne */
  
}

.container {
  padding: 0 16px;
}

.title {
  color: grey;
}



/* CTA Section */
.container .cta-btn {
margin-top: auto; /* Pousse le bouton en bas */

}

.cta-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 64px;
}

.cta-container .cta-section {
  flex: 1 1 300px;
  max-width: 100%;
}

.cta-section {
  background-color: #3b2e2e;
  color: #fffbe9;
  border-radius: 18px;
  padding: 48px 24px;
  text-align: center;
  margin: 64px 0 0 0;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.cta-section p {
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.cta-btn,
.btn {
  display: inline-block;
  background: linear-gradient(120deg, #ffe066 60%, #ffc34d 100%);
  color: #222;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 1px;
  padding: 24px 48px;
  border-radius: 32px;
  border: 4px solid #f9cb6c;
  box-shadow: 0 2px 16px 0 rgba(255, 212, 67, 0.10);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
}

.cta-btn:hover,
.btn:hover {
  box-shadow: 0 6px 32px 0 rgba(255, 212, 67, 0.18);
  transform: translateY(-2px) scale(1.03);
  background: linear-gradient(120deg, #ffd43b 60%, #ffb300 100%);
}




/* Footer */

footer {
  width: 100%;
  text-align: center;
  padding: 32px 0 24px 0;
  color: #bfa100;
  font-size: 1rem;
  background: none;
  margin-top: 32px;
  box-sizing: border-box;
}



/* Media Queries */
@media screen and (max-width: 900px) {
  .column {
    flex: 1 1 45%;
    max-width: 45%;
  }
}

@media screen and (max-width: 600px) {
  .column {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .feature-list,
  .testimonial-list,
  .features-grid,
  .testimonials-grid {
    flex-direction: column;
    align-items: center;
  }

  .features,
  .story,
  .cta-section,
  .cta {
    padding: 32px 8px;
  }

  .hero,
  header {
    padding: 48px 8px 24px 8px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  section.bees img {
    width: 180px;
    height: auto;
  }

  .cta-btn,
  .btn {
    padding: 18px 32px;
    font-size: 1rem;
  }
}

