@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Quicksand", cursive;
}

:root {
  --bg-light: #f8f3eb;
  --bg-accent: #90f5fc;
  --text-primary: #333;
  --text-secondary: #555;
  --accent-color: #1e1e1e;
  --radius: 8px;
  --gap: 16px;
}
html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: #000;
}
.secondary-text {
  width: 50%;
}

hr {
  padding: 2px 0px 2px 0px;
  background-color: #956e4b;
}

ul {
  display: flex;
  gap: 50px;
}

ul li a {
  transition: 0.2s ease-in-out;
  font-size: 18px;
  font-weight: 600;
}

ul li {
  list-style-type: none;
  font-weight: 500;
}

ul li a:hover {
  color: #242424;
}

.outline {
  margin: 20px;
  background-color: var(--bg-accent);
  border-radius: 30px;
}
.indent {
  padding: 0px 100px 0px 100px;
}

#cookie-popup {
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
  width: 300px;
  padding: 20px 30px;
  box-sizing: border-box;
  background-color: #ffffff;
  opacity: 1;
  transition: opacity 0.5s ease;
  color: #333;
  border-radius: 20px;
  border: 1px solid;
}

#cookie-popup p:first-child {
  margin: 0;
  padding-bottom: 10px;
  font-weight: 600;
}

#cookie-popup p:nth-child(2) {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 25px;
}

#cookie-popup button {
  width: 100%;
  background-color: #000;
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: all 1s ease;
}

.reveal.active {
  transform: translateY(0px);
  opacity: 1;
}

#scrollToTopBtn {
  position: fixed;
  bottom: 150px;
  right: 20px;
  padding: 13px 16px;
  font-size: 20px;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1000;
  display: none;
  transition: opacity 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: turquoise;
}

menu {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}

menu h1 {
  color: var(--accent-color);
  font-size: 28px;
}

menu span {
  display: flex;
  gap: 10px;
  align-items: center;
}
menu span img {
  border-radius: 100px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.19);
  cursor: pointer;
}

.toggle_btn {
  padding-top: 10px;
  color: #333;
  font-size: 4rem;
  cursor: pointer;
  display: none;
}

#first {
  padding-top: 100px;
  padding-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 50px;
}
#first h1 {
  font-size: 62px;
  color: var(--accent-color);
  padding-bottom: 25px;
}
#first p {
  padding-bottom: 25px;
}

.specific-button {
  border-radius: 50px;
  outline: none;
  padding: 15px 40px 15px 40px;
  border: none;
  background-color: var(--accent-color);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.specific-button:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.other {
  display: flex;
  gap: 20px;
}

.other img {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.7s ease-out forwards;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.19);
  border-radius: 30px;
}

.other img:nth-child(2) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#second {
  padding: 20px 100px 20px 100px;
}
#second h2 {
  color: var(--accent-color);
}
#second p {
  padding: 10px 0px 0px 0px;
}
#second .categories {
  padding: 50px 0px 50px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  scroll-behavior: smooth;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

#second .categories::-webkit-scrollbar {
  display: none;
}

#second .categories .category-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-align: center;
}

#second .categories .category-item p {
  padding-top: 15px;
}
#second .categories .category-item img {
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background-color: transparents;
  cursor: pointer;
  border-radius: 100%;
}
#second .categories .category-item img:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  background-color: transparent;
}

#third {
  padding: 50px 0px 50px 0px;
}
#third h2 {
  color: var(--accent-color);
}
#third p {
  padding: 10px 0px 30px 0px;
}

#third .cards {
  display: flex;
  flex-wrap: wrap; /* allow wrapping */
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  gap: 10px;
}
#third .cards .card {
  width: 270px;
  border-radius: 30px;
  border: 1px solid #f8f3eb;
  transition: all 0.3s ease;
  flex: 1 1 270px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#third .cards .card img {
  border-radius: 30px;
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  background-color: transparent;
}

#flavor {
  padding: 50px 100px 50px 100px;
}
#flavor h2 {
  color: var(--accent-color);
}

#flavor p {
  padding: 10px 0px 0px 0px;
}
#flavor .flavors {
  padding: 50px 0px 50px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  scroll-behavior: smooth;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

#flavor .flavors .flavor-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-align: center;
}

#flavor .flavors .flavor-item p {
  padding-top: 15px;
}
#flavor .flavors .flavor-item img {
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: transparent;
  cursor: pointer;
  border-radius: 100%;
}
#flavor .flavors .flavor-item img:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  background-color: transparent;
}

#flavor .flavors::-webkit-scrollbar {
  display: none;
}

#last {
  display: flex;
  padding: 20px 20px 20px 20px;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 60%;
  margin: 100px auto;
  background-color: var(--bg-accent);
}

#last h1 {
  font-size: 38px;
  color: var(--accent-color);
}

#last p {
  width: 80%;
  padding: 20px 0px 40px 0px;
  font-size: 20px;
}

#last img {
  border-radius: 20px;
}

#fourth {
  padding: 80px 0px 100px 0px;
  /* background-color: #f0e1cf; */
}

#fourth h2 {
  color: var(--accent-color);
}
#fourth p {
  padding: 10px 0px 30px 0px;
}
#fourth img {
  border-radius: 30px;
}

.main-image {
  border: 2px solid lightgray;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nodisplay {
  display: none;
}

.location-btn {
  display: inline-block;
  background-color: transparent; /* Tailwind-style green */
  color: white;
  font-size: 16px;
  font-weight: normal;
  color: #1c1c1c;
  width: 280px;

  padding: 12px 24px;
  border: none;
  border-radius: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.email-btn {
  display: inline-block;
  background-color: #dca824; /* nice red tone */
  color: white;
  font-size: 16px;
  font-weight: normal;
  padding: 12px 24px;
  width: 280px;
  border: none;
  border-radius: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instagram-btn {
  display: inline-block;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  font-size: 16px;
  width: 280px;

  font-weight: normal;
  padding: 12px 24px;
  border: none;
  border-radius: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.facebook-btn {
  display: inline-block;
  background-color: #2162b6;
  color: white;
  width: 280px;

  font-size: 16px;
  font-weight: normal;
  padding: 12px 24px;
  border: none;
  border-radius: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-btn:hover,
.instagram-btn:hover,
.facebook-btn:hover,
.email-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.location-btn:active,
.instagram-btn:active,
.facebook-btn:active,
.email-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.instagram-icon,
.email-icon,
.facebook-icon,
.location-icon {
  margin-right: 8px;
  vertical-align: middle;
}

.social-div {
  display: flex;
  justify-content: center;
  gap: 100px;
  align-items: center;
}

.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form {
  background-color: transparent;
  padding: 20px;
  border-radius: 28px;
  width: 500px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 50%;
  margin: auto;
  box-shadow: 0 10px 20px 10px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  margin-bottom: 80px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  background-color: white;
  outline: none;
}

textarea {
  height: 120px;
  resize: none;
}

footer {
  background-color: #f8e1b7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  font-weight: 600;
  font-size: 14px;
  padding: 30px 30px 30px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-links {
  display: none;
}

/*  RESPONSIVE   */

@media screen and (max-width: 1500px) {
  #second .categories .category-item img,
  #flavor .flavors .flavor-item img {
    width: 200px;
    height: 200px;
  }

  .main-image {
    width: 450px;
    height: 400px;
  }
}

@media screen and (max-width: 1340px) {
  .nav-links {
    padding-top: 30px;
    animation: slideDown 0.4s ease forwards;
    transition: height 0.3s ease-in-out, opacity 0.6s ease-in-out; /* Added transition for height and opacity */
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }
  .nav-links ul p {
    padding-top: 20px;
  }

  .nav-links.active {
    display: block;
  }

  header menu ul {
    display: none;
  }
  header menu span {
    display: none;
  }

  .toggle_btn {
    padding-bottom: 10px;
    color: var(--accent-color);
    font-size: 1.5rem;
    cursor: pointer;
    display: block;
  }

  #first {
    padding-top: 30px;
    display: block;
  }

  .other {
    padding-top: 30px;
  }

  .other img {
    width: 200px;
    height: 250px;
  }

  #last {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .last-part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .social-div {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .indent {
    padding: 0px 40px 0px 40px;
  }

  menu h1 {
    font-size: 24px;
  }

  menu ul {
    display: none;
  }

  menu span {
    display: none;
  }

  #first {
    display: block;
  }

  #first h1 {
    text-align: center;
    font-size: 42px;
  }

  #first p {
    text-align: center;
  }

  .secondary-text {
    width: 100%;
  }

  .inner-first {
    display: flex;
    flex-direction: column;
  }

  .specific-button {
    width: 70%;
    margin: 0 auto;
  }

  .other {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
  }

  .other img {
    width: 150px;
    height: 150px;
  }

  #second {
    padding: 30px 0px 0px 0px;
  }

  #second h2 {
    padding: 0px 0px 0px 40px;
  }
  #second .next {
    padding-left: 40px;
  }

  #second .categories {
    padding: 50px 100px 50px 100px;
  }

  #third .cards {
    flex-direction: column;
    align-items: center;
  }

  #third .cards .card {
    width: 90%;
    max-width: 320px;
  }

  #flavor {
    padding: 30px 0px 0px 0px;
  }

  #flavor h2 {
    padding: 0px 0px 0px 40px;
  }
  #flavor .next {
    padding-left: 40px;
  }

  #flavor .flavors {
    padding: 50px 100px 50px 100px;
  }

  .flavor-item img {
    width: 230px;
    height: 230px;
  }

  #last {
    width: 87%;
  }

  #last h1 {
    font-size: 26px;
    width: 100%;
  }

  #last p {
    font-size: 14px;
    width: 100%;
  }

  .social-div {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }

  .main-image {
    width: 280px;
    height: 280px;
  }

  form {
    width: 87%;
  }

  footer {
    display: block;
    font-size: 10px;
    text-align: center;
    line-height: 25px;
  }
}

@media (min-width: 768px) {
  #cookie-popup {
    left: auto;
    right: 20px;
    transform: none;
  }
}
