@import "./variables.css";
@import "./typography.css";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--pink-50);
  overflow-x: hidden;
}

iframe {
  width: 100%;
  min-height: 30rem;
  object-fit: fill;
}

h1.title {
  font-family: "ClashDisplay-Semibold", sans-serif;
  font-size: clamp(1.5rem, 5vw, 1.8rem);
  color: black;
  text-align: center;
}
.text-pink {
  color: var(--bright-pink);
}
p.subtitle {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.85rem, 3vw, 0.9rem);
  color: #808080;
  text-align: justify;
  margin-top: 1rem;
}
ul.subtitle li {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.85rem, 3vw, 0.9rem);
  color: #808080;
  text-align: justify;
  margin-top: 0.55rem;
}

/* navbar */

header.top-navigation {
  position: sticky;
  top: 0;
  padding: 1rem;
  z-index: 2;
  background-color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

header.top-navigation .logo {
  font-family: "ClashDisplay-Semibold", sans-serif;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  color: var(--bright-pink);
  display: flex;
  align-items: center;
  gap: 1rem;
}

header.top-navigation .logo img {
  max-width: 50px;
  height: auto;
}

.navigation-main {
  display: flex;
}

button.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--bright-pink);
}

.main-nav {
  display: none;
}

.main-nav {
  max-height: 500px;
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 1rem 1rem;
  background-color: white;
}

.main-nav.open {
  display: flex;
}

.main-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--nav-item-gap);
  list-style: none;
}
.main-nav ul li {
  font-family: "ClashDisplay-Regular", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
}
.main-nav ul li a {
  padding: 0.5rem 0;
  display: block;
  text-decoration: none;
  color: black;
  width: 100%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.main-nav ul li {
  cursor: pointer;
}

.main-nav ul li:hover {
  background-color: var(--bright-pink);
  border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
}
.main-nav ul li:hover a {
  color: white;
  padding: 1rem 0.5rem;
}

.main-nav ul li .order-btn {
  background-color: var(--bright-pink);
  color: white;
  padding: 0.5rem 1rem;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
}
/* whatsapp icon  */
.main-nav ul li .order-btn i {
  margin-right: 0.5rem;
}
.section {
  padding-left: var(--page-padding-x);
  padding-right: var(--page-padding-x);
}

/* HOME SECTION */
.home.section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.main-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  transform: rotate(-3deg);
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
}
.home-img {
  width: 100%;
  height: auto;
  max-width: 300px;
  margin: 0 auto;
}
.home-img-bg {
  position: absolute;
  top: 5rem;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.home-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--light-gray);
}
.home-content {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 1.25rem 0 0 0;
}

.cta-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.8rem;
}

/* CTA BUTTONS */
.cta-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--bright-pink);
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.65rem, 3vw, 0.8rem);
  color: white;
  text-decoration: none;
  border-radius: 0.25rem;
  transition: background-color 0.3s ease;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -ms-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
}
.cta-btn i {
  margin-left: 0.5rem;
}
.cta-btn:hover {
  background-color: #ff1493;
  color: white;
}

.cta-btn.secondary {
  border: 1px solid var(--bright-pink);
  background-color: transparent;
  color: var(--bright-pink);
}
.cta-btn.secondary:hover {
  background-color: var(--bright-pink);
  color: white;
}
.cta-btn.secondary.active {
  background-color: var(--bright-pink);
  color: white;
}

/* WELCOME Section */
.welcome.section {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: white;
}
.welcome-content {
  max-width: 800px;
  margin: 0 auto;
}
.welcome-button {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem 0 3rem 0;
}
.welcome-button .cta-btn {
  cursor: pointer;
}
.welcome-div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.welcome-div.misi {
  padding: 0 1rem;
}
.welcome-div .subtitle {
  font-size: clamp(0.85rem, 3vw, 1rem);
}

.subtitle-movie {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.85rem, 3vw, 0.9rem);
  color: #808080;
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.welcome-content .cta-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  margin-top: 2rem;
}
.welcome-content .visi,
.welcome-content .misi {
  text-align: justify;
  display: none;
}

.video-content {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

/* MENU */
.menu.section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: white;
}

.menu-header div {
  display: none;
}

.menu-content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 2rem 1rem;
}
.menu-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  align-items: center;
  justify-content: space-between;
}
.menu-header .title {
  text-align: start;
  padding-left: 1rem;
}
.menu-items {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 2rem;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 2px 9px 42px 0px rgba(0, 0, 0, 0.08);
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
  margin: 0 auto;
  max-width: 350px;
  width: 100%;
}

.menu-img {
  width: 100%;
  max-width: 250px;
  margin: auto 0;
}
.menu-info {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
.menu-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: black;
  margin: 0.5rem 0;
}
.menu-description {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  color: #808080;
  text-align: left;
}
.menu-price {
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  font-family: "ClashDisplay-Bold", sans-serif;
  color: var(--bright-pink);
  font-weight: bold;
  margin-top: 1rem;
}
.menu-variant {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  color: #808080;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.menu-variant ul {
  padding-top: 0.5rem;
  padding-left: 1.5rem;
}

/* GALLERY */
.gallery.section {
  background-color: var(--yellow-50);
  padding: 6rem 5vw;
}
.gallery-header {
  max-width: 1200px;
  padding-left: 5vw;
}
.gallery-header .title {
  text-align: start;
}
.gallery-header .subtitle {
  text-align: start;
  margin-bottom: 1rem;
}
.gallery-content {
  margin-top: 2rem;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Keeps the entire image visible */
  object-position: center;
  display: block;
}
.swiper-pagination {
  --swiper-pagination-bullet-inactive-color: #fff; /* Inactive bullet color */
  --swiper-pagination-bullet-inactive-opacity: 0.5; /* Inactive bullet opacity */
  --swiper-theme-color: var(--bright-pink);
}
.swiper-button-next,
.swiper-button-prev {
  --swiper-navigation-size: 2rem;
  --swiper-theme-color: var(--bright-pink);
  width: 30px;
  height: 30px;
}
/* REVIEW */
.review.section {
  padding: 6rem 5vw;
  background-color: var(--pink-50);
}
.review-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.review-header .subtitle {
  margin-bottom: 3rem;
  margin-top: 1rem;
  max-width: 920px;
}

.review-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.review-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-height: 300px;
  max-width: 400px;
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 2px 9px 42px 0px rgba(0, 0, 0, 0.08);
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  background-color: white;
}

.review-text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.85rem, 3vw, 0.9rem);
  color: #808080;
  text-align: center;
  margin-top: 1rem;
}
.review-author {
  font-family: "ClashDisplay-Bold", sans-serif;
  font-size: clamp(0.85rem, 3vw, 0.9rem);
  color: var(--bright-pink);
  margin-top: 0.5rem;
}

/* FOOTER */
footer {
  background-color: white;
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}
.footer-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  background-color: inherit;
}
.footer-logo {
  font-family: "ClashDisplay-Semibold", sans-serif;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  color: var(--bright-pink);
  margin-bottom: 1rem;
  text-align: center;
}
.footer-locations ul,
.footer-links ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  list-style: none;
}
.footer-locations ul li,
.footer-links ul li {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  color: #808080;
  margin-bottom: 0.5rem;
}
.footer-locations ul li a,
.footer-links ul li a {
  text-decoration: none;
  color: black;
  transition: color 0.3s ease;
}
.footer-locations ul li a:hover,
.footer-links ul li a:hover {
  color: var(--bright-pink);
}
.footer-socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  margin-top: 2rem;
}
.footer-text {
  margin-top: 2rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  color: #808080;
  text-align: center;
}

.floating-lang,
.floating-lang button {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background-color: var(--bright-pink);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  cursor: pointer;
  border: none;
  z-index: 999;
}

/* MEDIA QUERIES */

/* Tablet (≥ 640px) */
@media (min-width: 640px) {
  .home.section {
    padding: 9rem 0;
  }
  .home-img {
    max-width: 400px;
  }
  .home-container {
    flex-direction: row;
    padding: 0 2rem;
  }
  .home-content {
    padding: 0;
  }
  .home-container .home-content {
    order: 1;
  }
  .home-container .main-img {
    order: 2;
  }
  .main-nav ul li:hover a {
    color: white;
    padding: 0.5rem;
  }
  .main-nav ul li:hover a.order-btn {
    padding: 0.5rem 1.5rem;
  }
  .category-icons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
  .menu-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* Small laptop (≥ 768px) */
@media (min-width: 768px) {
  /* HEADER */
  header.top-navigation .navigation-main .menu-toggle {
    display: none;
  }
  header.top-navigation .navigation-main .main-nav {
    display: flex;
  }
  .main-nav {
    display: none;
    flex-direction: row;
    position: static;
    width: 100%;
    padding: 0.5rem;
  }
  .main-nav ul {
    display: flex;
    flex-direction: row;
    gap: var(--nav-item-gap);
    list-style: none;
  }
  .main-nav ul li {
    font-size: clamp(0.75rem, 2vw, 0.9rem);
  }

  .home-container {
    flex-direction: row;
    padding: 0 3rem;
  }

  .home.section {
    padding: 6.5rem 0;
  }
  .home-img {
    max-width: 350px;
  }
  .menu-items {
    max-width: none;
  }
  .gallery-header .subtitle {
    max-width: 45rem;
  }
  .gallery-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  .home-container {
    flex-direction: row;
    padding: 0 6.5rem;
  }
  .menu-content {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 3rem;
  }
  .menu-items {
    padding: 2rem;
    width: auto;
  }
  .gallery-content {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Large desktop (≥ 1280px) */
@media (min-width: 1280px) {
  .home-container {
    flex-direction: row;
    padding: 0 8rem;
  }
  .menu-content {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
