@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-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 {
  width: 100%;
  max-width: 100%;
  padding-top: 0px;
  margin: 0 auto;
  text-align: center;
}

.logo {
  width: 30%;
  margin-bottom: 0px;
}



.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;
}

/* ====== PRICING SECTION ====== */
.pricing-section {
  background:transparent;
  border-radius: 24px;
  margin: 40px, 50px,0px,50px auto;
  box-shadow: 0 2px 24px rgba(255, 212, 67, 0.08);
  padding: 40px 20px;
  text-align: center;
}



.pricing-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: #3c2a1e;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: #fffbe9;
}

.pricing-table thead {
  background: #ffe066;
}

.pricing-table th,
.pricing-table td {
  padding: 16px;
  border-bottom: 1px solid #f0e1b0;
  font-size: 1rem;
}

.pricing-table th {
  font-weight: 700;
  color: #3c2a1e;
}

.pricing-table td {
  text-align: center;
  font-size: 1.1rem;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: #fff3c4;
  transition: background 0.3s ease;
}

/* CTA Section */

.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;
}