:root {
    --primary-color: #000000;
    --secondary-color: #d6a47f;
    --accent-color: #ffd9c0;
    --white-color: #ffffff;
    --text-color: #fce8d5;
    --highlight-color: #8b3a3a;
    --order-now-color: #ff6347;
    --contact-now-color: #32cd32;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Roboto', sans-serif;
    background: var(--primary-color);
    color: var(--text-color);
  }

  ul {
    list-style: none;
  }

  a {
    text-decoration: none;
  }

  button {
    cursor: pointer;
    border: none;
    background: none;
  }

  img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  header {
    background: var(--primary-color);
    padding: 1rem 2rem;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .nav-logo .logo {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
  }

  .nav-menu {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .nav-item {
    list-style: none;
  }

  .nav-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
  }

  .nav-link:hover {
    color: var(--white-color);
    background-color: var(--highlight-color);
    transform: scale(1.1);
  }

  .nav-link:active {
    transform: scale(1);
  }

  .hero-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-content {
    flex: 1 1 50%;
    text-align: left;
  }

  .hero-section .title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: bold;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeIn 2s forwards, slideUp 1s forwards;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  }

  .hero-section .subtitle {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeIn 2s 0.5s forwards;
  }

  .description {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2rem;
    color: var(--text-color);
  }

  .button {
    display: inline-block;
    margin: 1rem 0.5rem 0 0;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .button:hover {
    background-color: var(--highlight-color);
    color: var(--white-color);
    transform: scale(1.05);
  }

  .order-now {
    background-color: var(--order-now-color);
    color: var(--white-color);
  }

  .contact-now {
    background-color: var(--contact-now-color);
    color: var(--white-color);
  }

  .hero-image-wrapper {
    flex: 1 1 30%;
    max-width: 300px;
    margin: 20px;
    animation: fadeIn 2s 1s forwards;
  }

  @media screen and (max-width: 768px) {
    .hero-section {
      flex-direction: column;
      text-align: center;
    }

    .section-content, .hero-image-wrapper {
      flex: 1 1 100%;
    }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes slideUp {
    from {
      transform: translateY(50px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @media screen and (max-width: 900px) {
    .navbar :where(#menu-close-button, #menu-open-button) {
      font-size: 1.5rem;
    }

    .navbar #menu-close-button {
      position: absolute;
      right: 30px;
      top: 30px;
      color: white;
    }

    .navbar #menu-open-button {
      color: var(--white-color);
    }

    .navbar .nav-menu {
      position: fixed;
      left: -100%;
      top: 0;
      width: 300px;
      height: 100%;
      flex-direction: column;
      background-image: url('9f5982404855df6254b39acd3c230720.jpg');
      background-size: cover;
      background-position: center;
      align-items: center;
      padding-top: 100px;
      transition: left 0.4s ease;
      z-index: 1000;
    }

    .navbar .nav-menu.show {
      left: 0;
    }

    .navbar .nav-menu::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: -1;
    }

    .navbar .nav-menu .nav-link {
      color: var(--white-color);
      font-size: 1.2rem;
      font-weight: 600;
      padding: 0.75rem;
      text-align: center;
      z-index: 1;
    }

    .navbar .nav-menu .nav-link:hover {
      color: var(--accent-color);
      background-color: rgba(0, 0, 0, 0.6);
      transform: scale(1.1);
    }
  }

  .about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }

  .about-container {
font-family: 'Poppins', sans-serif;
color: #333;
}

.about-container h2 {
font-family: 'Lobster', cursive;
font-size: 2.5rem;
color: #b76e79; /* a nice milk-tea inspired pinkish tone */
}

.about-container p {
line-height: 1.8;
font-size: 1.1rem;
}

/* Menu Section to ha */


.menu .heading {
font-size: 3rem;
color: #5e4033;
margin-bottom: 40px;
}

.menu .heading span {
color: #d87d4a;
}

.menu-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2rem;
}

.menu-box {
background: #fff;
border-radius: 20px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
padding: 20px;
width: 250px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-box:hover {
transform: translateY(-10px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.menu-box img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 15px;
margin-bottom: 15px;
}

.menu-box h3 {
font-size: 1.5rem;
color: #4e2e1c;
margin: 10px 0;
}

.menu-box p {
font-size: 0.95rem;
color: #7a5c4f;
margin-bottom: 10px;
}

.menu-box span {
font-weight: bold;
font-size: 1.2rem;
color: #d87d4a;
}

  .about-image {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
  }

  .about-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--accent-color);
  }

  .about-text {
    flex: 1 1 55%;
    padding: 1rem;
  }

  .about-text h2 {
    color: var(--highlight-color);
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .about-text p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
  }

  @media screen and (max-width: 768px) {
    .about-container {
      flex-direction: column-reverse;
      text-align: center;
    }

    .about-image {
      margin-bottom: 2rem;
    }
  }

  #menu-open-button {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
    font-size: 2rem;
    background-color: transparent;
    color: var(--white-color);
    border: none;
    display: block;
  }

  .social-link {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
  }

  .social-link:hover { color: var(--highlight-color); }
  .social-link[href*="facebook"]:hover { color: #1877f2; }
  .social-link[href*="youtube"]:hover { color: #ff0000; }
  .social-link[href*="instagram"]:hover { color: #e1306c; }

  .testimonials-section {
    font-family: 'Quicksand', sans-serif;
    color: black;
    background-color: var(--white-color);
    padding: 2rem 3rem;
    text-align: center;
    border-radius: 20px;
    margin: 2rem auto;
  }

  .testimonials-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--highlight-color);
  }

  .user-image {
width: 150px;
height: 150px;
object-fit: cover;
border-radius: 50%;
border: 4px solid var(--highlight-color);
margin-top: 1rem;

}
.section-title {
font-family: 'Lobster', cursive;
}
.name{
font-family: 'DM Serif Display', serif;

}
.testimonials{
display: flex;
flex-direction: column;
align-items: center;   
text-align: center;
}

.menu-section {
color: var(--white-color);  
background-color: var(--dark-color); 
}
/* menu section styling! */
.menu-section .menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 110px;
  align-items: center;
  justify-content: space-between;
 
}
.menu-section .menu-list .menu-item{
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  width: calc((100% / 3) - 110px);

}
.menu-section .menu-list .menu-item .menu-image {
  max-width: 83%;
  aspect-ratio: 1;
  margin-bottom: 15px;
  object-fit: contain;
}
.menu-section .menu-list .menu-item .menu-title {
margin: 12px 0;
font-size: var(--font-size-1);
font-weight: var(--font-weight-semi-bold);

}
.menu-section .menu-list .menu-item  .text{
  font-size: var(--font-size-m);
}
.section-title {
  text-align: center;
  margin-bottom: 70px /* space sya ng text dun sa image ha */
}
@media screen and (max-width: 1024px) {
  .menu-section .menu-list {
    gap: 60px;
  }
  .menu-section .menu-list .menu-item {
    width: calc((100% / 3) - 60px);
  }
}

.menu-section .menu-list .menu-item .menu-image {
  max-width: 300px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border-radius: 10px;
}
.menu-section .menu-list .menu-item .menu-image:hover {
transform: scale(1.05); /* Lumalaki ng kaunti */
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Nagkakaroon ng shadow */
}
.menu-order {
background-color: #fbe6d4; /* parang milk tea base color */
padding: 20px;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
color: #2e2e2e;

}
.menu-order img.menu-order {
max-width: 600px;
height: auto;
border-radius: 15px;
display: block;
margin: 0 auto 30px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
transition: transform 0.3s ease-in-out;
}
.order-box {
background-color: #ffffff;
padding: 30px;
border-radius: 20px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
max-width: 500px;
margin: 0 auto;
text-align: left;
}
.order-box h2,
.order-box h3 {
color: #a0522d; /* warm milk tea brown */
margin-bottom: 10px;
}
.order-box select {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border-radius: 10px;
border: 1px solid #ccc;
font-size: 16px;
}
.order-box label {
font-size: 16px;
display: block;
margin: 5px 0;
color: #444;
}
.order-button {
background-color: #a0522d; /* Milk tea brown */
color: white;
padding: 12px 25px;
border: none;
border-radius: 25px;
font-size: 16px;
cursor: pointer;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
transition: background-color 0.3s ease, transform 0.3s ease;
}

.order-button:hover {
background-color: #8b4513;
transform: scale(1.05);
}
