
body {
  background-color: #f9f1f0;
}

/* Header */
.custom-header{
    /* background: linear-gradient(to right, #ffe6f0, #f0e7ff); */
    /* background: rgb(254, 246, 255); */
    background: #FFD5C5;
    padding-left: 8.33%;
    padding-right: 8.33%;
    font-family: "Dongle";
    min-height: 100px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease; /* for smooth shrinking */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-brand img {
  display: block;
  max-height: 60px;
  width: auto;
  padding: 0;
  margin: 0;
  transition: max-height 0.3s ease; /* smooth resize */
}

/* When navbar shrinks */
.custom-header.scrolled .navbar-brand img {
  max-height: 50px;
}

main {
  padding-top: 60px; /* compensate for navbar height */
}

.custom-header.scrolled {
  min-height: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.custom-header {
  transition: all 0.3s ease; /* for smooth shrinking */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.custom-header li {
  font-size: 1.5rem;
}

.custom-header a {
  font-size: 1.5rem;
}

.nav-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding: 0.5rem 1rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #F79489;
  left: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Footer */
.site-footer {
  background: #d7d5d5;
  padding: 20px 8.33%;
  margin-top: 50px;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-brand {
  font-weight: bold;
  margin: 0;
}

.social-links a {
  margin-left: 15px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.social-links a:hover {
  transform: scale(1.1);
}

.social-links img {
  width: 24px;
  height: 24px;
  filter: grayscale(50%);
}


/* Main Image */

#main_image_container {
  position: relative;
  margin: 5% 8.33%;
  border-radius: 30px;
  overflow: hidden;
}

/* Main image desktop default */
#main_image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 30px;
  transition: all 0.3s ease;
}

#image_overlay_text {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  font-family: 'Quicksand', sans-serif;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
  z-index: 2;
  pointer-events: none;
}

/* Mobile styling */
@media (max-width: 768px) {
  #main_image_container {
    margin-top: 60px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 30px;
  }

  #main_image {
    width: 100%;
    height: 90vw;
    object-fit: cover;
    padding: 0;
    border-radius: 30px;
  }

  #image_overlay_text {
    font-size: 1.6rem;
  }
}


/* What do we do? */
.what-we-do-section {
  width: 100%;
  display: flex;
  justify-content: center;
  /* padding: 60px 0; */
}

.what-we-do-container {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
  align-items: center;
  justify-content: center;
}

.what-we-do-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.what-we-do-image {
  flex: 1 1 300px;
  
}

@media (max-width: 768px) {
  .what-we-do-image {
    margin-top: 20px;
  }
}


.what-we-do-text {
  flex: 1 1 300px;
  background: #F4DBD7;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 10px;
}

.what-we-do-text h2 {
  font-size: 2rem;
  /* color: #F79489; */
  /* font-family: "Dongle"; */
  font-family: "Quicksand";
  /* font-size: 3rem; */
}

.what-we-do-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  font-family: "Quicksand";
}


/* Quad Box */
.how-it-works-section {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: center;
}


.quad-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 80%;
  border-radius: 30px


}



.step-box {
  border-radius: 20px;
  padding: 20px;
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 220px;
  text-align: center;
  background-color: white;
}

.quad-box-title {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 4rem;
  padding: 20px 0 0px;
  font-family: "Dongle";
}

.text-content h3 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #222;
  font-family: "Dongle";
}

.text-content p {
  color: #444;
  font-family: 'Quicksand';
}

/*Resize to 4x1 on smaller screens*/
@media (max-width: 768px) {
  .quad-box {
    grid-template-columns: 1fr;
  }

  .quad-box-title {
    font-size: 3rem;
  }

  .text-content h3 {
    font-size: 2rem;
  }
}

/* Contact us Page */
.contact-us-container{
  background: #F4DBD7;
  margin-top: 3%;
  margin-left: 15%;
  margin-right: 15%;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 3%;
}

.contact-us-container h2 {
  font-family: "Quicksand";
  font-weight: bold;
  text-align: center;
  /* color: #6c548f; */
}

.contact-us-container label {
  font-family: "Quicksand";
}


.form-duo-container{
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 768px) {
  .form-duo-container {
    flex-direction: column;
  }

  .contact-us-container{
    margin-left: 5%;
    margin-right: 5%;
  }
}

.form-label-input{
  flex: 1;
}

form input {
  width: 100%;
}

form textarea {
  width: 100%;
  height: 100px;
}

form label {
  font-weight: bold;
}

select, input {
  background-color: white;
  /* color: #6c548f; */
  border: 1px solid #ccc;
  border-width: 1.5px;
  padding: 8px;
  border-radius: 4px;
  font-family: "Quicksand";
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  height: 40px;
  line-height: 1.2;
}

.submit-button {
  margin-top: 20px;
  width: 100%;
  padding: 12px 20px;
  background-color: #ffbab2;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #ffa298;
}

.submit-button:active {
  background-color: #ff9083;
}

.submit-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  font-family: inherit;
  font-size: 1rem;
}


/* Thank you page */
#thank-you-container {
  background-color: #F4DBD7;
  margin-top: 5%;
  margin-left: 15%;
  margin-right: 15%;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 3%;
  display:flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

#thank-you-container h1 {
  font-family: "Quicksand";
}

#thank-you-container p {
  font-family: "Quicksand";
}

#thankyou_panda {
  width: 20%;
}

/* Our Selection */
.section-heading {
  font-size: 2rem;
  /* Make the text colour a gradient */
  color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  text-align: left;
  font-family: 'Dongle', sans-serif;
  font-size: 4rem;
  font-weight: bold;
}

#fruit-tea-heading {
  background-image: linear-gradient(0deg, #ff6a88, #fddb92);
}

#milk-tea-heading {
  background-image: linear-gradient(0deg, #ae8a6b, #7d5843);
}

#toppings-heading {
  background-image: linear-gradient(0deg, #f3cde8, #ff7bf4);
}

.tea-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* max 4 */
  gap: 30px;
  padding-top: 20px;
}

.tea-item {
  text-align: center;
}

.tea-item img {
  width: 100%;
  max-width: 200px;
  height: 250px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tea-item img:hover {
  transform: scale(1.05);
}

.tea-item p {
  margin-top: 10px;
  font-weight: 600;
  color: #333;
  font-family: 'Quicksand', sans-serif;
}

.tea-container {
  padding: 40px 8%;
}

#milk-tea-container {
  background-color: #e7d7d1;
  /* background-color: #f0e8e5; */
  /* background-color: #ffdfd3; */

}

#milk-tea-container img {
  background-color: #f5ece8;
}

.topping-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* max 4 */
  gap: 30px;
  padding-top: 20px;
}

.topping-item {
  display: flex;
  gap: 5px
}

.topping-item img {
  width: 100%;
  max-width: 50px;
  height: auto;
}

.topping-item p{
  margin-top: 15px;
  font-weight: 600;
  color: #333;
  font-family: 'Quicksand', sans-serif;
}

#toppings-container {
  margin-bottom: 50px;
}

.menu-note {
  background-color: #fff7f0; /* soft warm background */
  border-left: 6px solid #ffbda9; /* pastel highlight */
  padding: 1.5rem;
  margin: 40px auto;
  border-radius: 10px;
  width: 90%;
  max-width: 800px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  color: #5a4a42;
}

.menu-note a {
  color: #d3686e;
  text-decoration: underline;
  font-weight: 600;
}


/* FAQ Section */
.faq-section {
  width: 80%;
  margin: 35px auto;
  background: #f2e5f3;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);

  -webkit-touch-callout: none;
  -webkit-user-select: text;
  -webkit-text-size-adjust: 100%;
}

.faq-section,
.faq-section * {
  -webkit-tap-highlight-color: transparent;
  -webkit-link: none;
  -webkit-text-fill-color: inherit;
  color: inherit;
}

a, a:visited, a:hover, a:active {
  color: inherit;
  text-decoration: none;
}

.faq-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  font-family: 'Dongle', sans-serif;
  font-size: 2.5rem; 
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  background-color: white;
  border: none;
  text-align: left;
  padding: 15px 20px;
  font-size: 1.1rem;
  /* font-weight: bold; */
  cursor: pointer;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  font-family: 'Dongle', sans-serif;
  font-size: 1.5rem;
}

.faq-question:hover {
  background-color: #f7f1f8;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  font-family: "Quicksand", sans-serif;
}

.faq-answer p {
  margin: 10px 0;
  color: #555;
}
