/* Reset margins and paddings to remove any white borders */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}
/* Hero Section */
.hero-section {
  position: relative;
  background-image: url('https://i.ibb.co/Dg1qYrQX/benyamin-bohlouli-Rcj302-Npzis-unsplash.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
}

.logo img {
  height: 90px; 
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 18;
  font-weight: 500;
}

.navbar a:hover {
  color: #228B22; /* yellow hover effect for contrast */
}

/* Hero Content */
.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}

.left-text {
  max-width: 50%;
}

.right-text {
  text-align: right;
  max-width: 50%;
}

/* Bee images */
.bee {
  position: absolute;
  width: 130px; 
  height: auto;
}

.bee1 {
  top: 240px;   
  left: 10%;   
}

.bee2 {
  top: 0px;
  left: 50%;
}

.bee3 {
  bottom: 80px;
  right: 10%;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .left-text, .right-text {
    max-width: 100%;
    font-size: 42px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .logo img {
    height: 65px;
  }

  .bee {
    width: 65px; /* Slightly smaller on mobile */
  }
}
.section-two {
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  padding: 70px 40px;
  text-align: center;
}

.section-title {
  color: #EDC065;
  font-size: 54px;
  margin-bottom: 60px;
}

.section-two-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.story-column,
.buy-column {
  flex: 1 1 300px;
  max-width: 30%;
  text-align: center;
  position: relative;
}

.center-image {
  flex: 1 1 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.subheading {
  font-size: 32px;
  color: #EDC065;
  margin-bottom: 20px;
}

.story-column p,
.buy-column p {
  font-size: 20px;
  color: #333;
  line-height: 1.6;
}

.story-img {
  width: 180px;
  margin-top: 10px;
  border-radius: 75px;
}

.main-jar {
  max-width: 65%;
  border-radius: 60px;
  margin-top: 60px;
}

.bee {
  position: absolute;
  width: 80px;
}

.bee-left {
  bottom: 10px;
  left: 60%;
}

.bee-right {
  top: -30px;
  right: -20px;
}

/* Responsive */
@media (max-width: 992px) {
  .section-two-content {
    flex-direction: column;
    align-items: center;
  }

  .story-column,
  .buy-column,
  .center-image {
    max-width: 100%;
    text-align: center;
  }

  .bee {
    display: none;
  }
}

/* Buy Now Section*/
.section-four {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 10px 20px;
  font-family: 'Inter', sans-serif;
  gap: 30px;
}

.product-left { flex: 1.4;
}
.product-right {
  flex: 2;
}

.product-left {
  background-color: #EDC065;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 10px;
  border-radius: 75px;
}

.product-image {
  max-width: 100%;
  height: auto;
}

.product-right {
  background: white;
  padding: 2px;
}

.product-title {
  font-size: 40px;
  color: #EDC065;
  margin-bottom: 20px;
  font-weight: bold;
}

.product-subtitle {
  font-size: 28px;
  color: black;
  margin-bottom: 20px;
  font-weight: 600;
}

.product-price {
  font-size: 28px;
  color: #EDC065;
  font-weight: bold;
  margin-bottom: 20px;
}

.product-description {
  font-size: 18px;
  color: black;
  margin-bottom: 30px;
  line-height: 1.6;
}

.quantity-section {
  margin-bottom: 20px;
}

.quantity-section select {
  margin-top: 8px;
  padding: 8px;
  font-size: 18px;
  width: 160px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.order-btn {
  background-color: #EDC065;
  color: white;
  font-size: 25px;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.order-btn:hover {
  background-color: #d4a851;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .section-four {
    flex-direction: column;
  }
}

/* Footer Section */
.footer {
  background-color: white;
  padding: 60px 60px 20px 60px;
  font-family: 'Inter', sans-serif;
  position: relative;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left {
  max-width: 200px;
}

.site-name {
  font-size: 28px;
  color: #EDC065;
  font-weight: 700;
  margin-bottom: 20px;
}

.social-icons a {
  margin-right: 15px;
  display: inline-block;
}

.social-icons img {
  width: 28px;
  height: 28px;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.link-group h3 {
  font-size: 20px;
  color: #EDC065;
  margin-bottom: 15px;
}

.link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-group ul li {
  margin-bottom: 10px;
}

.link-group ul li a {
  text-decoration: none;
  font-size: 18px;
  color: #000;
}

.footer-bar {
  width: 100%;
  height: 30px;
  background-color: #EDC065;
}