@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;
}




/* Hero Section */

.hero-bg {
  background: linear-gradient(180deg, #ffe066 0%, #fff8e7 100%);
  width: 100%;
  padding: 0;
}

.hero {
  width: 100%;
  max-width: 100%;
  padding: 0px 16px 60px;
  margin: 0 auto;
  text-align: center;
}

.logo {
  width: 30%;
  margin-bottom: 0px;
}



.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin: -20px 0 24px;
  color: #222;
  letter-spacing: -1px;
}

.subtitle {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 24px;
}



main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

main h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 20px 0;
}

main p {
  font-size: 1.1rem;
  margin: 10px 0;
  line-height: 1.6;
}


/* Navigation Bar Section */

nav 
{
    margin: 40px auto;
    width: 100%;
    height: 80px;
    background-color:#fffbe9;
    border-radius: 18px;
}
 
nav .main_pages 
{
  
    display: flex;
    justify-content: space-around;
    align-items: center;
  
}
 
nav .main_pages a 
{
  flex:1;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    color: #3c2a1e;
    border-radius: 18px;
   
}
 
nav a:hover 
{
    background: #ffe066; 
    border-radius: 18px;
}

.widget {
  width: 55%;
  max-width: 100%;
  border-radius: 10%;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}


.features {
  background: #fff;
  border-radius: 24px;
  margin-top: -48px;
  box-shadow: 0 2px 24px 0 rgba(255, 212, 67, 0.08);
  padding: 80px 20px;
  text-align: center;
}


.features h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 800;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 100%;
  margin: 0 auto;
}

.feature {
  background: #fffbe9;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(255, 212, 67, 0.07);
  padding: 32px 24px;
  flex: 1 1 260px;
  max-width: 100%;
  min-width: 220px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature:hover {
  box-shadow: 0 8px 32px 0 rgba(255, 212, 67, 0.18);
  transform: translateY(-4px) scale(1.03);
}

.icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

/* 🌻 Bees Section */

section.bees {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding: 80px 16px;
  background-color: #fffbe9;
  border-radius: 24px;
  box-shadow: 0 2px 24px rgba(255, 212, 67, 0.06);
  margin-top: 64px;
}

section.bees div {
  flex: 1 1 45%;
  text-align: center;
}

section.bees h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #3c2a1e;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

section.bees img {
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

section.bees img:hover {
  transform: scale(1.05);
}

/* Testimonials */

.testimonials {
  margin: 64px 0 0 0;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 800;
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 100%;
  margin: 0 auto;
}

.testimonial {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  flex: 1 1 260px;
  max-width: 100%;
  font-style: italic;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  text-align: left;
  font-size: 1.05rem;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial span {
  font-weight: 700;
  color: #bfa100;
}

/* Story Section */

.story {
  padding: 80px 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;
}

/* 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;
}

/* Media Queries */

@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;
  }
}
