@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #3498db;
  --primary-color-dark: #2980b9;
  --text-dark: #2e2e2e;
  --text-light: #595959;
  --extra-light: #f3f4f6;
  --white: #ffffff;
  --max-width: 1200px;
  --first-color: #3498db;
  --first-color-second: #2980b9;
  --white-color: #fff;
  --text-color: #1a1a1a;
  --input-color: #f1f1f1;

  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.813rem;

  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  --img-transition: transform 0.3s ease;
  --img-scale: scale(1.1);
  --img-hidden: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--extra-light);
  padding-top: 70px;
}

.product-display {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-top: 30px;
}

.product-details {
  flex: 1;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.company-badge {
  background-color: rgba(0, 123, 255, 0.1);
  color: var(--primary-color);
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dynamic-heading {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0;
}

.text-changer {
  position: relative;
  color: var(--primary-color);
  display: inline-block;
}

.text-changer::before {
  content: "Teh Desa";
  animation: productChange 15s infinite;
  display: inline-block;
}

.text-changer::after {
  content: "";
  position: absolute;
  right: -5px;
  width: 2px;
  height: 90%;
  top: 5%;
  background-color: var(--primary-color);
  animation: cursorBlink 0.8s infinite;
}

@keyframes productChange {
  0%,
  15% {
    content: "Teh Desa";
  }
  20%,
  35% {
    content: "Nisu Smoothies";
  }
  40%,
  55% {
    content: "MooDessert";
  }
  60%,
  75% {
    content: "Mlaku Coffee";
  }
  80%,
  95% {
    content: "Teh D'obong";
  }
  100% {
    content: "Teh Desa";
  }
}

@keyframes cursorBlink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.product-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
  max-width: 90%;
  text-align: justify;
  text-justify: inter-word;
}

.action-container {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.action-button {
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.whatsapp-action {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
}

.whatsapp-action:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-3px);
}

.product-image-desktop {
  flex: 1;
  min-width: 200px;
  display: flex;
  justify-content: flex-end;
}

.product-image-mobile {
  display: none;
}

.clean-img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .product-display {
    flex-direction: column;
    gap: 40px;
    margin-top: 30px;
  }

  .product-details {
    align-items: center;
    text-align: center;
  }

  .company-badge {
    margin: 0 auto;
  }

  .dynamic-heading {
    font-size: 2.2rem;
    text-align: center;
  }

  .product-desc {
    text-align: justify;
    text-justify: inter-word;
    max-width: 100%;
  }

  .product-image-desktop {
    display: none;
  }

  .product-image-mobile {
    display: flex;
    justify-content: center;
    width: 100%;
    order: -1;
  }
}

@media (max-width: 480px) {
  .product-display {
    margin-top: 30px;
  }

  .dynamic-heading {
    font-size: 1.8rem;
  }

  .product-details,
  .product-image-mobile {
    min-width: 100%;
  }

  .product-desc {
    font-size: 1rem;
  }
}

.grid {
  display: grid;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0 2rem;
}

.section__title {
  font-size: var(--h2-font-size);
  text-align: center;
  margin-bottom: var(--mb-2);
}

.button {
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.button2 {
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem 0 0 0;
  font-weight: 600;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.button3 {
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 0.75rem 1.5rem;
  border-radius: 15px;
  font-weight: 600;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.button:hover {
  background-color: var(--first-color-second);
  transform: translateY(-0.25rem);
}

.button--flex {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
}

.button--link {
  background: none;
  color: var(--first-color);
  padding: 0;
}

.button--link:hover {
  background: none;
  color: var(--first-color-second);
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.about__data {
  text-align: left;
}

.about__description__join {
  margin-bottom: var(--mb-2);
  text-align: justify;
  color: var(--text-light);
  margin-bottom: 5px;
}

.about__description {
  margin-bottom: var(--mb-2);
  text-align: justify;
  color: var(--text-light);
}

.about__img {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  justify-content: center;
}

.about__img-overlay {
  overflow: var(--img-hidden);
  border-radius: 0.75rem;
}

.about__img-one {
  width: 240px;
  border-radius: 0.75rem;
}

.about__img-two {
  width: 190px;
  border-radius: 0.75rem;
}

.about__img-one,
.about__img-two {
  transition: var(--img-transition);
}

.about__img-one:hover,
.about__img-two:hover {
  transform: var(--img-scale);
}

@media screen and (max-width: 768px) {
  .about__container {
    grid-template-columns: 1fr;
  }

  .about__data {
    order: 1;
  }

  .about__img {
    order: 2;
    margin-top: 2rem;
  }
}

.experience__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.experience__content {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0rem;
  width: 100%;
  flex-wrap: wrap;
}

.experience__data {
  text-align: center;
  min-width: 100px;
}

.experience__number {
  font-size: var(--h2-font-size);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--first-color);
}

.experience__description {
  font-size: var(--small-font-size);
}

.experience__img {
  width: 100%;
  display: flex;
  justify-content: center;
}

.experience__overlay {
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.experience__img-one {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.experience__img-one:hover {
  transform: scale(1.02);
}

@media screen and (max-width: 768px) {
  .experience__content {
    gap: 1rem;
  }

  .experience__number {
    font-size: calc(var(--h2-font-size) * 0.9);
  }

  .experience__description {
    font-size: calc(var(--small-font-size) * 0.9);
  }
}

@media screen and (max-width: 480px) {
  .experience__content {
    gap: 0.5rem;
  }

  .experience__data {
    min-width: 80px;
  }

  .experience__number {
    font-size: calc(var(--h2-font-size) * 0.8);
  }
}

.video__container {
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}

.video__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
  color: var(--text-light);
}

.video__content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.video__button {
  position: absolute;
  right: 1rem;
  bottom: -1rem;
  padding: 1rem 1.5rem;
}

.video__button-icon {
  font-size: 1.2rem;
}

#video-file {
  width: 100%;
  border-radius: 1rem;
}

.place__card {
  position: relative;
  overflow: var(--img-hidden);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.place__card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.place__card,
.place__img {
  width: 168px !important;
  height: 168px !important;
}

.place__container {
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: 1.5rem;
}

.place__img {
  transition: var(--img-transition);
  object-fit: cover;
  border-radius: 1rem;
}

.place__card:hover .place__img {
  transform: var(--img-scale);
}

.place__content,
.place__title {
  color: var(--white-color);
}

.place__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem 0.75rem 1rem;
}

.place__rating {
  align-self: flex-end;
  display: flex;
  align-items: center;
}

.place__rating-icon {
  font-size: 0.75rem;
  margin-right: var(--mb-0-25);
}

.place__rating-number {
  font-size: var(--small-font-size);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.place__subtitle,
.place__price {
  display: block;
}

.place__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
}

.place__subtitle {
  font-size: var(--smaller-font-size);
  margin-bottom: var(--mb-1-25);
}

.place__button {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
}

.sponsor__container {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
}

.sponsor__content {
  display: flex;
  justify-content: center;
}

.sponsor__img {
  width: 100px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.sponsor__img:hover {
  filter: grayscale(0);
}

@media screen and (min-width: 576px) {
  .home__container {
    grid-template-columns: 1fr;
  }

  .about__container,
  .experience__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .place__container {
    grid-template-columns: repeat(3, max-content);
  }
}

@media screen and (min-width: 768px) {
  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .about__data {
    text-align: left;
  }

  .place__container {
    grid-template-columns: repeat(4, max-content);
  }

  .subscribe__form {
    width: 80%;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    padding: 0;
  }

  .experience__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .experience__content {
    padding: 0;
  }

  .home__container {
    padding-top: 6rem;
  }

  .home__data-title {
    font-size: 2.5rem;
  }
}

.section__header {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 2rem;
}

.section__subheader {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section__description {
  font-size: 1rem;
  line-height: 1.75rem;
  color: var(--text-light);
  text-align: justify;
  padding: 1rem;
  margin-bottom: 2rem;
}
.section__about {
  font-size: 16px;
  line-height: 1.6;
  margin: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
  max-width: 800px;
  color: #333;
  text-align: justify;
}


@media (max-width: 576px) {
  .section__about {
    font-size: 12px;
    line-height: 1.4;
    padding: 0 4px;
    margin: auto;
  }
}

@media (max-width: 480px) {
  .section__about {
    font-size: 10px;
    line-height: 1.3;
    padding: 0 3px;
    margin: auto ;
  }
}

@media (max-width: 768px) {
    .section__about {
        font-size: 14px;
        line-height: 1.5;
        padding: 0 5px;
        margin: auto;
    }
}

@media (max-width: 1024px) {
    .section__about {
        font-size: 16px;
        line-height: 1.7;
        padding: 0 7px;
        margin: auto;
    }
}

@media (max-width: 1024px) {
  .section__description {
    font-size: 0.875rem;
    line-height: 1.5rem;
    margin: auto;
  }
}

@media (max-width: 768px) {
  .section__description {
    font-size: 0.75rem;
    line-height: 1.5rem;
    padding: 0.75rem;
    margin: auto;
  }
}

@media (max-width: 480px) {
  .section__description {
    font-size: 0.7rem;
    line-height: 1.4rem;
    padding: 0.5rem;
    margin: auto;
    
  }
}

.btn {
  padding: 1rem 2rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--primary-color);
  white-space: nowrap;
  border-radius: 5rem;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

.btn3 {
  outline: none;
  border: none;
  color: var(--primary-clr);
  background-color: var(--white);
  white-space: nowrap;
  border-radius: 5rem;
  transition: 0.3s;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: bold;
}

.btn3:hover {
  background-color: var(#eaf3fa);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

header {
  background: linear-gradient(
    to bottom,
    rgba(52, 152, 219, 0.1),
    rgba(52, 152, 219, 0)
  );
}

@media (max-width: 1024px) {
  .section__subheader {
    font-size: 0.875rem;
  }

  .section__header {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section__subheader {
    font-size: 0.75rem;
  }

  .section__header {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section__subheader {
    font-size: 0.7rem;
  }

  .section__header {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.header__container {
  display: grid;
  gap: 2rem 1rem;
  overflow: hidden;
}

.header__image img {
  max-width: 575px;
  margin-inline: auto;
}

.header__tag {
  margin-bottom: 2rem;
  max-width: fit-content;
  margin-inline: auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--primary-color);
  background-color: rgba(52, 152, 219, 0.1);
  border-radius: 5rem;
}

.header__tag img {
  max-width: 25px;
}

.header__content h1 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: var(--text-dark);
  text-align: center;
  line-height: 3.5rem;
}

.header__content h1 span {
  color: var(--primary-color);
}

.header__content .section__description {
  margin-bottom: 2rem;
  text-align: center;
}

.header__btns {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 2rem;
}

.header__btns a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.header__btns a span {
  padding: 4px 10px;
  font-size: 1.5rem;
  color: #3498db;
  border-radius: 100%;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.header__btns a:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .header__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .header__content h1 {
    font-size: 2.75rem;
    line-height: 3.25rem;
  }

  .header__image img {
    max-width: 400px;
  }

  .header__btns {
    flex-direction: column;
    gap: 1rem;
  }

  .header__btns a {
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .header__content h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .header__tag {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .header__btns {
    gap: 0.75rem;
  }

  .header__image img {
    max-width: 300px;
  }
}

.menu__container .section__header {
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}

@media (min-width: 768px) {
  .menu__container .section__header {
    max-width: 550px;
  }
}

.menu__container .section__header {
  max-width: 550px;
  margin-inline: auto;
  text-align: center;
}

.swiper {
  width: 100%;
  margin-top: 2rem;
}

.swiper-slide {
  width: 90%;
  max-width: 300px;
  margin: auto;
  flex-shrink: 0;
}

.menu__card {
  position: relative;
  isolation: isolate;
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  max-width: 300px;
  margin: auto;
}

.menu__card__details {
  position: absolute;
  width: 100%;
  height: 70%;
  bottom: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
  z-index: 1;
}

.menu__card__details h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.menu__card__details h5 {
  margin-bottom: 5px;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
}

.menu__card__details h5 span {
  font-size: 1rem;
  color: #fdc55e;
}

.menu__card__details a {
  color: var(--white);
}

.menu__card__details a:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .swiper-slide,
  .menu__card {
    width: 85%;
    max-width: 280px;
  }

  .menu__card__details {
    padding: 1rem;
  }

  .menu__card__details h4,
  .menu__card__details h5 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .swiper-slide,
  .menu__card {
    width: 100%;
    max-width: 250px;
  }

  .menu__card__details {
    padding: 0.75rem;
  }

  .menu__card__details h4,
  .menu__card__details h5 {
    font-size: 0.9rem;
  }
}

.about__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
}

.about__image img {
  max-width: 320px;
  margin-inline: auto;
}

.about__content .section__header {
  margin-bottom: 2rem;
}

.about__content .section__description {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.about__details {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about__details img {
  max-width: 50px;
  border-radius: 100%;
}

.about__details h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.about__details h5 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}
.section__about {
  font-size: 16px;
  line-height: 1.6;
  margin: 20px;
  padding: 0 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333;
  text-align: justify;
}

@media (max-width: 768px) {
  .section__about {
    font-size: 14px;
    line-height: 1.5;
    padding: 0 5px;
  }
}

@media (max-width: 576px) {
  .section__about {
    font-size: 12px;
    line-height: 1.4;
    padding: 0;
  }
}

.download__container {
  background-color: rgba(52, 152, 219, 0.02);
  overflow: hidden;
  padding: 2rem 0;
}

.download__container .section__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.download__image {
  display: flex;
  justify-content: center;
  width: 100%;
}

.download__image img {
  max-width: 100px;
  width: 100%;
  height: auto;
  display: block;
  border: 15px solid #000;
  border-radius: 20px;
}

.download__content {
  padding-block: 2rem;
  text-align: center;
}

.download__content .section__header {
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.download__content .section__description {
  margin-bottom: 2rem;
  font-size: 1rem;
}

#myBtn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 20px;
  transition: background-color 0.3s, transform 0.3s;
  max-width: 200px;
  width: auto;
  display: inline-block;
}

#myBtn:hover {
  background-color: var(--primary-color-dark);
  transform: scale(1.05);
}

#myBtn:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  #myBtn {
    max-width: 180px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  #myBtn {
    max-width: 150px;
    font-size: 0.8rem;
    padding: 8px 13px;
  }
}

.header__btns .btn {
  color: #ffffff;
  transition: color 0.3s;
}

.header__btns .btn:hover {
  color: #ffffff;
}

.header__btns .btn i {
  color: #ffffff;
}

.header__btns .btn:hover i {
  color: #ffffff;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 100px 100px 100px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  margin-bottom: -75px;
}
.column {
  flex: 25%;
  max-width: 25%;
}
.img-hover-zoom {
  height: auto;
  overflow: hidden;
  border: 5px solid transparent;
}
.img-hover-zoom img {
  vertical-align: middle;
  margin: 0;
  padding: 0;
  border: 0;
  transition: transform 0.5s ease;
}
.img-hover-zoom:hover img {
  transform: scale(1.5);
}

@media screen and (max-width: 900px) {
  .column {
    padding: 0 4px;
  }
}

@media screen and (max-width: 600px) {
  .row {
    padding: 0 4px;
    margin-bottom: -15px;
  }

  .column {
    padding: 0 3px;
  }

  .img-hover-zoom {
    border-width: 2px;
    margin-bottom: 6px;
  }
}
