@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  
  background-color: #fff8e7;
  color: #333;
  
}


header {
  text-align: center;
  padding: 50px 0;
  
}

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 {
  width: 100%;
  max-width: 100%;
  padding: 60px 16px 0px;
  margin: 0 auto;
  text-align: center;
}

.logo {
  width: 30%;
  margin-bottom: 0px;
}

.hero {
  display: flex;
  justify-content: center; /* center contents horizontally */
  align-items: center;
  padding: 15px 20px;
  background: transparent; /* let gradient show */
  position: relative;
}


  .logo {
  height: auto;
  width: 30%; /* or % based on screen */
  margin: 0 auto; /* center it */
  }

.hero h1 {
  font-size: 4.5rem;
  font-weight: 900;
  margin: 0 0 24px;
  color: #222;
  letter-spacing: -1px;
}



/* Hamburger menu */
/* HAMBURGER */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  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;
}

/* Animation en croix */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* 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;
}


.contact-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  min-height: 70vh;
  text-align: center;
}


.contact-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 32px;
  max-width: 500px;
  width: 100%;

  
}


.contact-item {
  margin: 16px 0;
  font-size: 1.1rem;
}

.contact-item a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #4CAF50;
}

.social-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.social-icons a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #4CAF50;
}

.logo_contact {
  width: 50px;
  height: auto;
  margin-bottom: 16px;
}


/* 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;
}