@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.container {
  width: 80vw;
  margin: auto;
  padding: 0 1vw;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

.cta-btn {
  border: 1px solid;
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  color: #552c10;
}
.cta-btn:hover {
  background-color: #552c10;
  color: #fff;
}

.hero-section {
  height: 100vh;
  background: url('images/bg1.png') no-repeat center center/cover;

}
.hero-section .container {
  height: 100%;
}
.hero-section .container nav {
  padding: 1.5vh 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-section .container nav .menu ul {
  display: flex;
}
.hero-section .container nav .menu ul li {
  margin: 0 1vw;
}
.hero-section .container nav .menu ul li a {
  color: #000;
}
.hero-section .container nav .menu ul li a:hover {
  color: #552c10;
  text-decoration: underline;
}
.hero-section .container .hero-content {
  height: calc(100% - 90px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-section .container .hero-content h1 {
  font-size: 20.5vw;
  color: #4a2f00;
}
.hero-section .container .hero-content .cookie {
  position: absolute;
  width: 22vw;
  transform: rotate(-60deg);
  z-index: -1;
  filter: drop-shadow(0 10px 5px rgba(37, 35, 34, 0.0745098039));
  transition: all 0.1s;
}
.hero-section .container .hero-content .choco-chips {
  position: absolute;
  z-index: 0;
  width: 12vw;
  top: 60%;
  left: 35%;
  filter: drop-shadow(0 10px 5px rgba(37, 35, 34, 0.0745098039));
  transition: all 0.1s;
}
.hero-section .container .hero-content .peanut {
  position: absolute;
  left: 90%;
  top: 45%;
  transform: translate(-40%, -90%);
  width: 12vw;
  z-index: -1;
  filter: drop-shadow(0 10px 5px rgba(37, 35, 34, 0.0745098039));
}
.hero-section .container .hero-content .gem {
  position: absolute;
  left: 4%;
  top: 60%;
  width: 3vw;
  filter: drop-shadow(0 10px 5px rgba(37, 35, 34, 0.0745098039));
}

.second-section {
  height: 100vh;
  background-image: url('images/bg2.png');
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center; /* Centers the image */
}
.third-section {
  
      height: 100vh;
      background-color: rgb(243, 114, 28);
    }
.second-section .container, .third-section .container {
  height: 100%;
}
.second-section .container .content-wrapper, .third-section .container .content-wrapper {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
}
.second-section .container .content-wrapper .img-section, .third-section .container .content-wrapper .img-section {
  flex-basis: 50%;
}
.second-section .container .content-wrapper .content-section, .third-section .container .content-wrapper .content-section {
  flex-basis: 50%;
}
.second-section .container .content-wrapper .content-section h2, .third-section .container .content-wrapper .content-section h2 {
  font-size: 5vw;
  line-height: 1;
  color: #ffffff;
}
.second-section .container .content-wrapper .content-section .sub-heading, .third-section .container .content-wrapper .content-section .sub-heading {
  font-size: 1.5vw;
  margin: 1vh 0 2vh;
  color: #ffffff;
}
.second-section .container .content-wrapper .content-section p, .third-section .container .content-wrapper .content-section p {
  line-height: 30px;
}

.third-section {
  background-color: #fff;
}
.third-section .product-card {
  background-color: #552c10;
  color: #fff;
  text-align: center;
  flex-basis: 30%;
  height: 35vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  padding: 5vh 2vh;
  border-radius: 30px;
  position: relative;
}
.third-section .product-card h4 {
  font-size: 2vw;
}
.third-section .product-card .cta-btn {
  color: #fff;
  margin-top: 1.5rem;
}
.third-section .product-card .cta-btn:hover {
  background-color: #fff;
  color: #552c10;
}
.third-section .product-card .cooki-sm {
  width: 25vw;
  position: absolute;
  top: -10%;
  filter: drop-shadow(0 10px 5px rgba(37, 35, 34, 0.0745098039));
  transition: all 0.1s;
}/*# sourceMappingURL=style.css.map */
.hero-section .container .hero-content .cookie {
  position: absolute;
  width: 22vw;
  transform: rotate(-60deg);
  z-index: 1;
  filter: drop-shadow(0 10px 5px rgba(37, 35, 34, 0.0745098039));
  transition: all 0.1s;
  width: 1100PX;
}

html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}
/* Responsive Adjustments */
@media screen and (max-width: 1200px) {
  .hero-section .container .hero-content .cookie {
      width: 40vw; /* Adjusts size for tablets */
  }
}

@media screen and (max-width: 768px) {
  .hero-section .container .hero-content .cookie {
      width: 60vw; /* Adjusts size for smaller tablets */
      transform: rotate(-30deg); /* Less rotation for better fit */
  }
}

@media screen and (max-width: 480px) {
  .hero-section .container .hero-content .cookie {
      width: 180vw; /* Larger for mobile */
      transform: rotate(-15deg); /* Minor rotation */
  }
}
/* Responsive Adjustments2 */
@media screen and (max-width: 1200px) {
  .second-section {
      padding: 40px 8%;
  }
}

@media screen and (max-width: 768px) {
  .second-section {
      min-height: 80vh; /* Reduces height for smaller screens */
      padding: 30px 5%;
  }
}

@media screen and (max-width: 480px) {
  .second-section {
      min-height: 70vh;
      padding: 20px 5%;
      background-size: contain; /* Ensures full image visibility on smaller screens */
  }
  .second-section {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; /* Ensures it covers the section */
}
}
/* Ensure full-width usage */
.fourth-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Flex container to manage layout */
.fourth-section .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Contact form and image section styling */
.fourth-section .contact-form,
.fourth-section .image-section {
  flex: 1;
}



/* Footer Styles */
.footer-section {
  background-color: #f5f5f5;
  padding: 60px 0 30px;
  color: #333;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo img {
  width: 150px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.links-column h5 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.links-column ul {
  list-style: none;
  padding: 0;
}

.links-column ul li {
  margin-bottom: 10px;
}

.links-column ul li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.links-column ul li a:hover {
  color: #000;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 70px;
  border-top: 1px solid #ddd;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
}

.legal-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-content {
      flex-direction: column;
  }
  
  .footer-links {
      margin-top: 30px;
  }
  
  .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 15px;
  }
  

}


/* Mobile styles */
@media (max-width: 768px) {
  .fourth-section .image-section {
      height: 300px; /* Adjust height for mobile */
      border-radius: 10px; /* Optional: reduce border radius for smaller screens */
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Optional: reduce shadow intensity */
      display: none;
  }
}
/* Mobile styles */
@media (max-width: 768px) {
  .second-section .container .content-wrapper .content-section,
  .third-section .container .content-wrapper .content-section {
      flex-basis: 100%; /* Full width on mobile */
      margin-right: 50px; /* Remove margin on mobile */
      margin-bottom: 70px; /* Optional: add spacing between sections */
  }
}
/* Mobile styles */
@media (max-width: 768px) {
  .third-section .product-card .cooki-sm {
      width: 50vw; /* Adjust width for mobile */
      top: -5%; /* Adjust vertical position for mobile */
      margin-top: 40px; /* Reduce margin for mobile */
  }
}
@media (max-width: 768px) {
  .third-section .product-card {
      height: auto; /* Adjust height for mobile */
  }

  .third-section .product-card img {
      display: block; /* Show image on mobile */
      width: 100%; /* Adjust width as needed */
      height: auto; /* Maintain aspect ratio */
      margin-bottom: 10px; /* Add spacing below the image */
  }
}
@media (max-width: 786px) {
  .third-section .product-card h4 {
      font-size: 10px;  /* Adjust font size for mobile */
      margin-bottom: 15px; /* Adjust margin for mobile */
  }
}
/* Mobile Styles */
@media (max-width: 768px) {
  .burger-menu {
      display: block;
  }

  .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0;
      background: #182641;
      width: 100%;
      text-align: center;
  }

  .nav-links.show {
      display: flex;
  }
}
@media (min-width: 769px) {
  .second-section .container .content-wrapper,
  .third-section .container .content-wrapper {
      height: 100%; /* Keep full height for larger screens */
      flex-direction: row; /* Side by side layout for larger screens */
      justify-content: space-between; /* Space between items */
  }
  .third-section .product-card h4 {
    font-size: 20px important;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
}
