/** @format */

/* ====== Fonts ====== */
@font-face {
  font-family: "GucciSansPro-1";
  src: url("assets/fonts/GucciSansPro-Light.woff2") format("woff2");
  /* font-weight: 300; */
  font-style: normal;
}

@font-face {
  font-family: "GucciSansPro-2";
  src: url("assets/fonts/GucciSansPro-Medium.woff2") format("woff2");
  /* font-weight: 500; */
  font-style: normal;
}

@font-face {
  font-family: "GucciSansPro-3";
  src: url("assets/fonts/GucciSansPro-Bold.woff2") format("woff2");
  /* font-weight: 700; */
  font-style: normal;
}

@font-face {
  font-family: "GucciSansPro-4";
  src: url("assets/fonts/GucciSansPro-Book.woff2") format("woff2");
  /* font-weight: 400; */
  font-style: normal;
}

@font-face {
  font-family: "garet";
  src: url("assets/garet.ttf") format("ttf");
  /* font-weight: 400; */
  font-style: normal;
}

/* ================= RESET ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "GucciSansPro-2", sans-serif;
}

html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}

body {
  width: 100vw;
  height: auto;
  overflow-x: hidden;
}
.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

/* ====== Header / Nav ====== */
nav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
  z-index: 999;
}

/* Initial Transparent State */
.nav-transparent {
  background: transparent;
  box-shadow: none;
}

/* After Scroll */
nav:not(.nav-transparent) {
  background: #ffffff;
}

nav:not(.nav-transparent) ul li,
nav:not(.nav-transparent) ul li a,
nav:not(.nav-transparent) .menu span,
nav:not(.nav-transparent) i {
  color: #171717;
}
/*  */
nav {
  height: 9.7dvh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  background: #fff;
  z-index: 100;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0 3vw;
}
nav ul li {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.8vw;
}
nav .menu {
  text-transform: uppercase;
}

nav ul li .ri-add-fill {
  margin-right: 0.7vw;
  font-size: 1vw;
}
nav ul li .ri-menu-line {
  margin-right: 0.7vw;
  font-size: 1.5rem;
  font-weight: 100;
}
.logo {
  height: 5.2dvh;
  height: 16dvh;
  transform: translateX(-7px);
  margin-top: 1.1dvh;
}
.contact_us {
  font-size: 26px;
  text-transform: uppercase;
}

.menu i {
  font-size: 26px;
}

.contact_us i {
  display: inline-block;
  transition: all 0.5s ease-in-out;
}
.contact_us:hover i {
  transform: rotate(90deg);
}

.blur_bg {
  height: 100dvh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  display: inline-block;
  z-index: -300;
  transition: all 1s ease-in-out;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(100px);
}
.blur_bg.active {
  z-index: 300;
}

.side_nav {
  font-family: "garet", sans-serif !important;
  height: 100dvh;
  width: 38vw;
  position: fixed;
  top: 0;
  right: -50vw;
  background: #fff;
  z-index: 300;
  padding: 5.5vw;
  transition: all 1s ease-in-out;
}
.active_side_nav {
  right: 0;
}
.side_nav ul {
  list-style: none;
  text-decoration: none;
}
.side_nav li {
  font-size: 23px;
  margin-top: 28px;
  text-transform: uppercase;
  cursor: pointer;
}
.side_nav a {
  text-decoration: none;
  color: #000;
}
.side_nav li span {
  display: inline-block;
  transform: rotateY(-90deg);
  transition: all 0.4s ease-in-out;
}
.side_nav li:hover span {
  transform: rotateY(0deg);
}
.small_links.first {
  margin-top: 35px !important;
}
.small_links {
  margin-top: 20px !important;
}
.small_links a {
  font-size: 15px;
}

.close_icon_cover {
  position: absolute;
  right: 2px;
  top: 15px;
  height: 4rem;
  width: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.close_icon {
  padding: 10px 20px;

  border-radius: 90px;
  background: #000;
  color: #fff;
  z-index: 100;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  font-size: 30px;
  transform: rotate(45deg);
}

.close_icon:hover {
  padding: 6px 15px;
  border-radius: 90px;
}

.contact_side {
  height: 100dvh;
  width: 38vw;
  position: fixed;
  top: 0;
  right: -50vw;
  background: #fff;
  z-index: 300;
  padding: 5.5vw;
  transition: all 1s ease-in-out;
}
.active_contact {
  right: 0;
}
.contact_side h2 {
  font-size: 1.6vw;
  font-weight: 400;
  text-transform: uppercase;
}
.contact_side .contact_link {
  margin-top: 4dvh;
}
.contact_side .contact_link a {
  font-size: 1.15vw;
  text-decoration: none;
  color: #000;
  margin-bottom: 1.6dvh;
  display: inline-block;
}
.number_font {
  font-size: 1.6vw;
}
.emial_font {
  font-size: 24px !important;
  margin-top: 12px;
}
.contact_side .contact_link.instagram a {
  font-size: 0.8vw;
  text-decoration: none;
  color: #000;
  margin-bottom: 1.6dvh;
  display: inline-block;
}
.contact_side p {
  font-size: 0.8rem;
  line-height: 1.2rem;
}
.contact_side .contact_link span {
  text-transform: uppercase;
  display: inline-block;
  margin-left: 0.2vw;
}
.contact_side .contact_link .underline {
  position: relative;
  width: 100%;
}
.contact_side .contact_link .underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0%;
  height: 1px;
  background: #000;
  transition: width 0.3s ease-in-out;
}
.contact_side .contact_link:hover .underline::after {
  width: 100%;
}

/* ====== hero ====== */
/* ====== hero ====== */
/* ====== hero ====== */
.hero {
  position: relative;
  height: 110dvh;
  background: url("assets/acting/01.webp") center/cover no-repeat;
}

/* CONTENT */
.hero-content {
  position: sticky;
  top: calc(71dvh);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  width: max-content;
  margin-bottom: 7dvh;
}

/* TITLE */
.hero-content h1 {
  font-family: "GucciSansPro-2", sans-serif;
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 26px;
}

.hero-content h1 div {
  /* font-family: "GucciSansPro-4", sans-serif; */
  font-weight: 500;
}
.hero-content h1 span {
  /* font-weight: 900; */
  font-size: 28px;
}

/* BUTTON GROUP */
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* FIXED SLOT (LOCKS POSITION) */
.btn-slot {
  width: 116px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BUTTON */
.hero-btn {
  -webkit-tap-highlight-color: transparent;
  width: 100%;
  height: 100%;
  background: #fff;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}
.hero-btn:focus,
.hero-btn:active {
  outline: none;
}

/* BUTTON TEXT */
.hero-btn span {
  font-size: 12px;
  font-family: "GucciSansPro-3";
  /* font-weight:; */
  letter-spacing: 1px;
  color: #000;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* HOVER – BUTTON SHRINKS, TEXT STAYS SAME */
.hero-btn:hover {
  transform: scale(0.92);
}

.hero-btn:hover span {
  transform: scale(1.087); /* 1 / 0.92 */
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    height: 72.5dvh;
  }

  .hero-content {
    position: absolute;
    top: 52dvh;
  }

  .hero-content h1 {
    font-size: 20px;
    letter-spacing: 0px;
    margin-bottom: 20px;
  }
  .hero-content h1 div {
    font-size: 22px;
    font-weight: 100;
  }

  .hero-content h1 span {
    font-size: 17px;
  }

  .btn-slot {
    width: 102.3px;
    height: 48px;
  }

  .hero-btn span {
    letter-spacing: 0px;
    font-size: 12px;
  }
}

/* ================= p.f SECTION ================= */
/* ================= p.f SECTION ================= */
/* ================= p.f SECTION ================= */
.curated-section {
  padding: 80px 0;
  background: #fff;
}

.curated-title {
  text-align: center;
  font-family: "GucciSansPro-4", sans-serif;
  font-size: 36px;
  letter-spacing: -0.96px;
  font-weight: 400;
  margin-bottom: 11.5dvh;
  color: #000;
}

.curated-grid {
  margin: 0 auto;
  padding: 0 4.2vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.curated-item {
  text-align: center;
}

.curated-img {
  width: 100%;
  aspect-ratio: 2.5 / 3.3;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.curated-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease-in-out;
}

.curated-img img:hover {
  transform: scale(0.94);
}

.curated-label {
  margin-top: 2.5dvh;
  font-family: "GucciSansPro-2", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.64px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .curated-section {
    padding: 7dvh 0;
  }

  .curated-title {
    font-size: 24px;
    letter-spacing: -0.72px;
    margin-bottom: 6dvh;
  }

  .curated-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 4.5vw;
  }

  .curated-label {
    margin: 0 0 4.5dvh 0;
    padding-top: 2.2dvh;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
}

/* ================= FEATURE SECTION ================= */
/* ================= FEATURE SECTION ================= */
/* ================= FEATURE SECTION ================= */
.feature-section {
  margin: 14vh 0 10vh 0;
  background: #ffffff;
  /* width: 100vw !important; */
}

/* Featured label */
.feature-top {
  font-family: "GucciSansPro-4", sans-serif;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 18dvh;
}

/* Layout */
.feature-wrap {
  max-width: 94vw;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0vw;
}

/* Image */
.feature-image {
  height: 854px;
  overflow: hidden;
}

.feature-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content */
.feature-content {
  /* max-width: 420px; */
  width: 40vw;
  margin: 0 auto;
  text-align: center;
  padding-left: 3vw;
}

.feature-content h2 {
  font-family: "GucciSansPro-4", sans-serif;
  font-size: 35px;
  font-weight: 300;
  letter-spacing: -0.96px;
  margin-bottom: 5dvh;
  /* width: 30vw; */
}

.feature-content p {
  /* width: 30vw; */
  font-family: "GucciSansPro-1", sans-serif;
  font-size: 18px;
  font-weight: 100;
  letter-spacing: -0.64px;
  line-height: 24px;
  margin-bottom: 3dvh;
}
.feature-content p.last {
  margin-bottom: 7.5dvh;
}

/* LINK — EXACT VIDEO STYLE */
.feature-link {
  position: relative;
  font-size: 14px;
  letter-spacing: -0.36px;
  color: #000;
  text-decoration: none;
  padding-bottom: 0.5px;
  display: inline-block;
  overflow: hidden;
}

/* base underline (visible initially) */
.feature-link::before,
.feature-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.8px;
  background: #000;
}

/* line that exits */
.feature-link::before {
  transform: translateX(0);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line that enters */
.feature-link::after {
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.4s;
}

.feature-link:hover::before {
  transform: translateX(100%);
}

.feature-link:hover::after {
  transform: translateX(0);
}

/* Mobile */
@media (max-width: 900px) {
  .feature-top {
    /* display: none; */
    /* font-size: 15px; */
    font-size: 20px;
    letter-spacing: 0.14px;
    margin: 8dvh 0 8dvh 0;
    margin: 1dvh 0 6dvh 0;
  }

  .feature-section {
    margin: 0vh 0 5vh 0;
  }

  .feature-wrap {
    grid-template-columns: 1fr;
    gap: 4dvh;
    margin: 0 0vw;
  }

  .feature-image {
    height: 72dvh;
    width: 100vw;
  }

  .feature-content {
    padding-left: 0;
    width: 90vw;
    max-width: 100%;
    text-align: center;
  }

  .feature-content h2 {
    font-size: 25px;
    letter-spacing: -0.62px;
    margin-bottom: 32px;
  }

  .feature-content p {
    padding: 0 1.9px;
    /* background-color: #c59c6b; */
    width: 100%;
    font-size: 16px;
    letter-spacing: -0.64px;
    line-height: 24px;
    margin-bottom: 2dvh;
  }
  .feature-content p.last {
    margin-bottom: 6dvh;
  }

  .feature-link {
    font-size: 13px;
    letter-spacing: -0.24px;
  }
}

/* /=====/======/====== LINK RESET ========/=====/==== */

.curated-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

/* ====== Section after slider ====== */
.second_hero {
  width: 100%;
  display: block;
  background: #d8ccbe;
  margin-top: -4dvh;
}
.second_container {
  display: flex;
  justify-content: center;
  gap: 2vw;
  overflow: hidden;
  padding: 10vw 7.8vw;
}
.second_container .left,
.second_container .right {
  flex: 1;
}
.second_container .lower_part {
  margin-top: 14dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 4dvh;
}
.second_container img {
  width: 100%;
}
.upper_part {
  display: inline-flex;
  width: 100%;
  position: relative;
  justify-content: center;
  margin: 14vw 0;
  align-items: center;
}
.upper_part img {
  width: 100%;
  position: absolute;
}
.portfolio_btn_2 {
  text-align: center;
  width: 45%;
  padding: 1vw 0;
  /* padding: 2dvh 0; */
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(1px);
  color: #000;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.6s ease-in-out;
  font-weight: 500;
  font-size: 1vw;
  text-decoration: none;
}
.portfolio_btn_2:hover {
  color: #000;
  box-shadow:
    0 6px 8px rgba(0, 0, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  transform: scale(0.97);
  width: 44%;
  padding: 0.9vw 0;
}
.second_hero .lower_part p {
  width: 80%;
  font-size: 1.1vw;
  word-spacing: 3px;
  text-align: center;
  transform: translateY(3dvh);
}

.email_link_desk {
  display: block;
}
.email_link_phone {
  display: none;
}

.nav-transparent ul li a {
  color: #000;
}

/* ====== Mobile ====== */
@media (max-width: 768px) {
  .email_link_desk {
    display: none;
  }

  .email_link_phone {
    display: block;
  }

  body {
    width: 100vw !important;
    overflow-x: hidden !important;
  }
  .logo {
    height: 11dvh;
    margin-top: 0.8dvh;
  }
  nav {
    padding-top: 1dvh !important;
    padding-bottom: 1dvh !important;
    height: 8dvh !important;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
  }
  nav:not(.nav-transparent) {
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
  }
  .nav-transparent ul li,
  .nav-transparent ul li a,
  .nav-transparent .menu span,
  .nav-transparent i {
    color: #fff;
  }
  nav ul {
    padding: 0 7vw;
  }
  nav .logo {
    transform: translateX(25vw);
    height: 12dvh;
  }
  .contact_us {
    /* display: none; */
    font-size: 17px;
  }
  .menu i {
    font-size: 18.5px;
  }
  .menu span {
    display: none;
  }
  nav ul li {
    font-size: 15px;
  }

  .slide-copy {
    top: 80%;
    transform: translate(-50%, -120%);
    width: 88%;
  }
  .slider_btn {
    top: 60%;
    transform: translate(-75px, -2.2dvh);
  }
  .slider_btn_postion {
    padding: 1vw 5dvh;
    top: 80.5% !important;
  }
  .tranding-slider-control .swiper-pagination {
    bottom: 1.5rem;
  }
  #tranding {
    height: 50dvh !important;
    margin-bottom: 10dvh;
  }

  .tranding-slider {
    margin-top: 8dvh !important;
  }
  .swiper-wrapper .swiper-slide {
    margin: 0 4px !important;
  }
  .swiper-button-prev {
    display: block !important;
    left: 0% !important;
    font-weight: bolder;
    color: #4a5252;
    opacity: 0.7;
    transform: translateY(-30px) scale(0.65) !important;
  }
  .swiper-button-next {
    display: block !important;
    right: -0.5% !important;
    color: #4a5252;
    font-weight: bolder;
    opacity: 0.7;
    transform: translateY(-30px) scale(0.65) !important;
  }

  .tranding-slide .tranding-slide-img img {
    height: 100%;
    width: 100% !important;
  }
  .slider_btn {
    padding: 0.8dvh 3vw !important;
    transform: translate(-35px, 10px) !important;
    font-size: 10px;
  }
  .slider_btn.slider_book {
    transform: translate(-49px, 12dvh) !important;
    padding: 5px 25px !important;
  }

  .second_container {
    padding: 16dvh 6vw 6vw 6vw !important;
    gap: 16dvh !important;
    flex-direction: column;
  }
  .second_hero .lower_part p {
    width: 95% !important;
    font-size: 12px !important;
    transform: translateY(0) !important;
  }
  .portfolio_btn_2 {
    font-size: 12px !important;
    padding: 1dvh 0 !important;
  }

  .close_icon {
    padding: 11px 18px;

    font-size: 22px;
  }

  .close_icon:hover {
    padding: 8px 15px;
  }

  nav ul li .ri-menu-line,
  .ri-add-fill {
    font-size: 18px !important;
  }
  .side_nav,
  .contact_side {
    height: 120dvh !important;
    width: 100vw !important;
    right: -100vw !important;
    padding: 8dvh 10vw !important;
  }
  .side_nav {
    padding-top: 6dvh !important;
    padding: 8dvh 8vw !important;
  }
  .side_nav.active_side_nav,
  .active_contact {
    right: 0 !important;
  }
  .blur_bg {
    height: 0dvh !important;
    width: 0vw !important;
  }
  .number_font,
  .emial_font {
    font-size: 18px !important;
  }

  .side_nav li {
    letter-spacing: -0.3px;
    font-size: 20px !important;
  }
  .contact_side h2 {
    font-size: 20px;
  }

  .contact_side .contact_link a {
    font-size: 16px !important;
  }
}

/* footer */
