:root {
  --white: #ffffff;
  --light-pink: #ffe9ec;
  --mid-pink: #78242d1a;
  --hot-pink: #ff687b;
  --dark-red: #78242d;
  --pink-pale: #ac8287;
  --light-blue: #e3f3fc;
  --black: #212121;
  --gray: #646464;
  --gap-20: 20px;
  --gradient-dark: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    #000000 145.44%
  );
  --gradient-blue: linear-gradient(180deg, #e3f3fc 0%, #ffffff 44.24%);
  --font-myriad: "myriad-pro", sans-serif;
  --font-jakarta: "Plus Jakarta Sans", sans-serif;
  --font-instrument: "Instrument Serif", serif;
  --font-sitka: "Sitka", serif;
}
/* @font-face {
  font-family: sitkaBanner;
  src: url("../fonts/Sitka\ Banner/sitka-banner.ttf");
} */
@font-face {
  font-family: myriadPro;
  src: url("../fonts/myriad-pro-cufonfonts/MYRIADPRO-REGULAR.OTF");
}
html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100vh;
}
*,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: myriadPro;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a {
  color: var(--dark-red);
}
a {
  text-decoration: none;
}
/* h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
p span,
a span {
  font-family: var(--font-instrument);
} */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 34px;
}
h3 {
  font-size: 28px;
}
h4 {
  font-size: 20px;
}
p,
a {
  font-size: 16px;
  font-weight: 500;
}
.row > * {
  padding: 0;
}
.btn,
.contact-nav,
.list-logo-close {
  display: flex;
  align-items: center;
}
.btn {
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 14px;
  /* font-family: var(--font-myriad); */
  font-weight: 700;
  gap: 4px;
  width: fit-content;
}
.btn.border {
  border: solid 1px var(--dark-red);
}
#header.header-scrolled {
  background-color: #ffffff;
}
.navbar,
.navbar nav,
.list-contents .btn.btn-img,
.carousel,
.carousel .skip-intro,
.gallery-container {
  width: 100%;
}
.navbar {
  position: fixed;
  z-index: 9;
}
.stock-ticker ul,
.stock-ticker li,
.indicator-arrow,
.arrow-container,
.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar nav {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 48px;
  padding: 20px 40px;
  height: 100%;
}
.navbar nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  margin-bottom: 0;
}
.contact-nav {
  gap: 24px;
}
.contact-nav label img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.contact-nav label {
  display: none;
}
.contact-nav .nav-list {
  display: none;
}
.list-container {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px 40px;
  width: 20vw;
  height: 100vh;
  background-color: var(--white);
}
.list-contents {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: end;
}
.list-contents .list-links {
  font-size: 32px;
  /* font-family: var(--font-instrument); */
}
.list-logo-close {
  padding-bottom: 40px;
}
.list-close {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.list-close img,
.top-img,
.treatments-background,
.top-img img,
.treatments-background img,
.carousel-item,
.filter-text,
.filter-img img {
  width: 100%;
  height: 100%;
}
.list-logo-close .list-close {
  margin-left: auto;
}
.list-container .list-logo-close .nav-logo,
.list-contents .btn.btn-img {
  display: none;
}
.list-contents .btn.btn-img {
  background-color: var(--hot-pink);
  color: var(--white);
  text-align: center;
}
.contact-nav input[type="checkbox"]:checked + .list-container {
  display: block;
}
.btn-img img {
  width: 16px;
  height: 16px;
}
section {
  /* min-height: 100vh; */
  scroll-snap-align: center;
  scroll-snap-stop: always;
}
section.Hero {
  display: flex;
  flex-direction: column;
  justify-content: end;
  background-color: var(--light-pink);
}
.background-lines {
  position: relative;
}
.top-img,
.treatments-background {
  position: absolute;
  overflow: hidden;
}
.treatments-background {
  z-index: -1;
}
.top-img img,
.treatments-background img {
  position: relative;
  object-fit: cover;
}
.carousel {
  position: relative;
  height: 70vh;
  overflow: hidden;
}
.carousel .skip-intro {
  position: absolute;
  z-index: 7;
  bottom: 80px;
  text-align: center;
}
.carousel .skip-intro a {
  font-size: 12px;
  font-weight: 400;
}
.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  mix-blend-mode: luminosity;
  overflow-y: none;
}
.carousel-item#one img {
  transform: translateY(-10%);
}
.carousel-item#two img {
  transform: translateY(7%) translateX(5%);
}
.carousel-item#three img {
  transform: translateY(14%) scale(2.1);
}
.carousel-item#four img {
  transform: translateY(-10%);
}
.carousel-item img {
  max-width: 100%;
  height: auto;
  opacity: 0.2;
  transition: opacity 1s ease-in-out;
  position: relative;
  filter: blur(3px);
}
.carousel-item img.blur {
  filter: blur(30px);
}
.carousel-item span {
  font-size: 48px;
}
.filter-text {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}
.filter-img {
  width: 814px;
  height: 257px;
}
.carousel-text {
  position: absolute;
  color: var(--dark-red);
  font-weight: 500;
  text-align: center;
  z-index: 2;
  max-width: 50%;
}
.stock-ticker {
  font-size: 15px;
  padding: 30px 0;
  overflow: hidden;
  user-select: none;
  display: flex;
  gap: var(--gap-20);
}
.stock-ticker ul {
  list-style: none;
  flex-shrink: 0;
  min-width: 100%;
  gap: var(--gap-20);
  animation: scroll 80s linear infinite;
  margin-bottom: 0;
}
.stock-ticker li {
  gap: var(--gap-20);
}
@keyframes scroll {
  to {
    transform: translateX(calc(-100% - var(--gap-20)));
  }
}
.stock-ticker .scroll-arrow {
  width: 18px;
  height: 18px;
  background-color: var(--mid-pink);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.stock-ticker .scroll-arrow img {
  width: 10px;
  height: 10px;
}
.stock-ticker .scroll-text p {
  /* font-family: myriadPro; */
  color: var(--dark-red);
}
.Treatments {
  position: relative;
}
.gallery-container {
  position: relative;
  height: 1207px;
}
.gallery-image {
  position: absolute;
}
.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-image:nth-child(1) {
  left: 60px;
  top: 304px;
  width: 200px;
  height: 280px;
}
.gallery-image:nth-child(2) {
  width: 240px;
  height: 320px;
  left: 470px;
  top: 84px;
}
.gallery-image:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 225px;
  right: 306px;
}
.gallery-image:nth-child(4) {
  width: auto;
  height: 280px;
  top: 381px;
  right: 0;
}
.gallery-image:nth-child(5) {
  width: 240px;
  height: 320px;
  bottom: 201px;
  left: 160px;
  padding: 0px 0px 14px 0px;
}
.gallery-image:nth-child(6) {
  width: 240px;
  height: 320px;
  bottom: 120px;
  right: 580px;
  padding: 0.21px 0px 0px 0px;
}
.gallery-image:nth-child(7) {
  width: 200px;
  height: 280px;
  bottom: 240px;
  right: 240px;
}
.treatments-container {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 7;
}
.treatments-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.treatments-content .btn {
  background-color: var(--hot-pink);
  color: var(--white);
}
.treatments-content h1 span {
  font-size: 40px;
}
.Services {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services-texts {
  padding: 122px 118px 80px 118px;
  display: flex;
  justify-content: space-between;
  flex-wrap: 2;
}
.Locations .services-texts,
.Facilities .services-texts,
.Reviews .services-texts {
  padding: 0;
  background-color: transparent;
}
.services-title {
  flex: 1;
}
.services-title h1 {
  font-size: 44px;
}
.services-desc {
  flex: 1;
}
.services-desc p {
  font-family: myriadPro;
  font-size: 14px;
  font-weight: 500;
}
.services-desc {
  font-family: myriadPro;
  max-width: 30vw;
}
.Services .services-title h1:last-child {
  padding-left: 140px;
}
.Facilities .services-title h1:last-child,
.Locations .services-title h1:last-child,
.Reviews .services-title h1:last-child {
  padding-left: 80px;
}
.services-list {
  display: flex;
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory; /* Enable horizontal scroll snap */
  -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
}
.services-list::-webkit-scrollbar,
.facilities-list::-webkit-scrollbar,
.reviews-list::-webkit-scrollbar {
  height: 0;
}
.service-content {
  flex-shrink: 0;
  position: relative;
  height: 70vh;
  width: 450px;
  scroll-snap-align: start;
}
.service-content img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.service-content.color {
  background-color: var(--hot-pink);
}
.dark-gr {
  background: var(--gradient-dark);
  position: absolute;
  width: 100%;
  height: 100%;
}
.gr-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.gr-content h2,
.gr-content h3,
.gr-content span {
  color: var(--white);
}
.circle-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px var(--white);
}

.gr-content h2 span {
  font-size: 36px;
}
.Locations {
  background-color: var(--light-blue);
}

.Locations,
.Facilities,
.Reviews {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.Locations {
  padding: 100px 90px 52px 90px;
}
.Facilities {
  padding: 123px 90px 80px 90px;
}
.tabs-container {
  width: 100%;
  margin: 0 auto;
}
.tabs-titles {
  display: flex;
  position: relative;
  justify-content: space-between;
  border-bottom: 2px solid var(--dark-red);
}
.tab-title {
  padding: 0 50px 20px 50px;
  cursor: pointer;
  text-align: center;
  font-size: 18px;
  color: var(--dark-red);
  position: relative;
  z-index: 1;
  font-family: myriadPro;

}
.tab-title.active {
  color: var(--dark-red);
  font-weight: bold;
  border-bottom: 3px solid #78242D;
}
.slide-indicator {
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: var(--dark-red);
  transition: all 0.3s ease;
  z-index: 0;
}
.tabs-content {
  padding-top: 40px;
}
.tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tab-content.active {
  display: flex;
  align-items: center;
  flex-direction: column;
  opacity: 1;
  transform: translateX(0);
}
.tab-content.active .container{
  padding-left: 2rem;
  padding-right: 2rem;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-20%);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(20%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-out-left {
  animation: fadeOutLeft 0.1s ease forwards;
}
.fade-in-left {
  animation: fadeInLeft 0.1s ease forwards;
}
.location-content {
  width: 100%;
  /* height: 53.33vh; */
  background-color: var(--white);
  display: flex;
}
.location-img {
  flex: 1;
}
.location-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 35px 40px 60px;
}
.location-img img {
  height: auto;
  width: 100%;
  object-fit: cover;
}
.location-desc,
.desc-title {
  display: flex;
  flex-direction: column;
}
.location-desc {
  gap: 24px;
  flex: 1;
  justify-content: space-between;
  /* padding-bottom: 4rem; */
}
.desc-title {
  gap: 16px;

}
.location-desc .buttons {
  display: flex;
  gap: 16px;
}
.location-desc .buttons .pink-hover {
  background-color: var(--hot-pink);
  color: var(--white);
}
.circle-arrow {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px var(--dark-red);
  border-radius: 50%;
}
.circle-arrow img {
  width: 16px;
  height: 16px;
}
.Facilities {
  background: var(--gradient-blue);
}
.facilities-list {
  display: flex;
  gap: 24px;
  width: calc(100% + 236px);
  margin-left: -118px;
  scroll-behavior: smooth;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 118px;
  scroll-snap-type: x mandatory; /* Memungkinkan elemen anak untuk "snap" saat digulir */
}
.facilities-content {
  flex-shrink: 0;
  position: relative;
  height: 400px;
  width: 320px;
  background-color: var(--light-blue);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  text-align: center;
  scroll-snap-align: center; /* Elemen ini akan "snap" di posisi tengah saat scroll */
}
.facilities-content img {
  width: 80px;
  height: 80px;
}
.facilities-content .info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.facilities-content .info h2 span {
  color: var(--black);
}
.facilities-content .info p {
  color: var(--gray);
}
.Reviews {
  padding: 117px 118px 47px 118px;
}
.review-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.reviews-list {
  display: flex;
  gap: 16px;
  width: calc(100% + 236px);
  margin-left: -118px;
  scroll-behavior: smooth;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 118px;
}
.reviews-content,
.quote-pfp,
.user-stars {
  display: flex;
  justify-content: space-between;
}
.reviews-content {
  flex-shrink: 0;
  position: relative;
  flex-direction: column;
  padding: 40px;
  width: 500px;
  height: 420px;
  background-color: var(--light-pink);
}
.indicator-arrow {
  gap: 80px;
}
.review-slide-indicator {
  width: 100%;
  border: solid 1px var(--dark-red);
}
.review-slide-indicator.active {
  border-top: 5px solid var(--dark-red);
}
.arrow-container {
  gap: 16px;
}
.arrows {
  width: 32px;
  height: 32px;
}
.arrows img {
  width: 100%;
  height: 100%;
}
.review-user {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.quote-pfp {
  align-items: center;
}
.quote-pfp .quote-img {
  width: 54px;
  height: auto;
}
.quote-pfp .pfp {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.quote-pfp .pfp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.star-container {
  display: flex;
}
.star-container img {
  width: 24px;
  height: 24px;
}
.gio-gallery {
  padding: 80px 0;
}
.gio-gallery {
  min-height: 10vh;
  max-height: 100vh;
}
.gio-gallery .stock-ticker {
  padding-block: 0;
}
.gio-gallery .stock-ticker ul {
  gap: 32px;
  animation:none;
}
.gio-gallery .stock-ticker ul li {
  height: 100%;
  width: auto;
}
.gio-gallery .stock-ticker ul li .potrait {
  height: 320px;
  width: auto;
}
.gio-gallery .stock-ticker ul li .landscape {
  height: 240px;
  width: auto;
}
.footer {
  padding: 40px;
  overflow: hidden;
}
.footer-content {
  background-color: var(--black);
  border-radius: 40px;
  display: flex;
}
.footer-img {
  width: 35%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
.footer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}
.footer-img .text-button {
  position: absolute;
  background: var(--gradient-dark);
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  gap: 32px;
  z-index: 2;
  border-radius: 40px;
}
.footer-img .text-button .texts h1,
.footer-img .text-button .texts h1 span {
  color: var(--white);
  font-family: myriadPro;
}
.footer-img .text-button .texts h1 span {
  font-style: italic;
}
.footer-img .text-button .texts h1:last-child {
  text-align: end;
  padding-right: 28px;
}
.footer-img .text-button a {
  align-self: center;
  display: inline-block;
  background-color: var(--white);
  font-family: myriadPro;
  color: #78242d;
  font-weight: 400;
}
.footer-links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* height: 100%; */
  padding: 80px;
  padding-bottom: 40px;
  flex-grow: 1;
}
.texts-about {
  display: flex;
  gap: 80px;
}
.texts-about .texts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.texts-about .texts h4 span {
  color: var(--gray);
}
.texts-about .texts a {
  color: var(--white);
  font-family: myriadPro;

}
.footer-copyright p{
  margin-bottom: 0;
}
.footer-copyright p,
.footer-copyright a {
  color: var(--gray);
  font-family: myriadPro;

}
.modal {
  display: flex;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height:0;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  flex-direction: column;
}

.modal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}
.hiden {
  display: none;
}
.paused {
  animation-play-state: paused !important;
}
.paused-hover {
  animation-play-state: paused !important;
}