/* =======================
   Root Variables
======================= */
*::selection {
  color: black;
  background-color: #eac9c1;
}
:root {
  /* Fonts */
  --font-body: "Noto Sans", sans-serif;
  --font-heading: "Cormorant Garamond", serif;

  /* Colors */
  --color-bg: #f6f6f6;
  --color-text: #f0f0f0;
  --color-white: #ffffff;
  --color-gray-light: #d1d5db;
  --color-gray-soft: rgba(255, 255, 255, 0.6);
  --color-nav-bg: rgba(30, 41, 59, 0.95);

  /* Font Sizes */
  --fs-xs: 0.875rem;
  --fs-sm: 0.9rem;
  --fs-base: 1.2rem;
  --fs-lg: 3rem;
  --fs-xl: 6rem;

  /* Letter Spacing */
  --ls-sm: 0px;
  --ls-md: 0.2em;

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);

  /* Z-index */
  --z-header: 50;
  --z-menu: 99;
  --z-video: -1;

  /* Spacing */
  --sp-header-y: 2rem;
  --sp-header-x: 4rem;
  --sp-nav-item: 0.5rem 1rem;

  --global-primary-font-family: "Italiana", serif;
  --global-secondary-font-family: "Roboto", sans-serif;
  --colorCream3: #e4dfd8;
  --colorBrownDark: white;
  --colorDark5: #141414;
  --circle-radius: 137px;
  --hoverColor: var(--colorCream3);
}

/* =======================
   Base Styles
======================= */
html {
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  margin: 0;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh; /* full screen height */
  width: 100%;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; /* keeps it behind content */
}

.background-video .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes sure the video fills area */
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  /* top: 45%; */
  transform: translateY(-50%);
}

.hero-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* border: 1px solid red; */
  text-align: center;
}
.hero-content h1 {
  width: 55%;
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 400;
  margin: 0;
  color: var(--color-white);
  line-height: 0.9;
  /* border: 1px solid green; */
}

.hero-content .second-heading {
  width: 70%;
}
.hero-content .third-heading {
  width: 90%;
}
.hero-content p {
  font-size: var(--fs-base);
  letter-spacing: var(--ls-sm);
  font-weight: 300;
  margin: 0;
  color: var(--color-white);
  line-height: 1;
  margin-top: 5%;
}
.heroCarousel1 {
  position: static;
}
.carousel-inner1 {
  position: absolute !important;
  overflow: visible;
  top: 400px;
}

/* =======================
   slider.css
======================= */
.slider-wrapper {
  position: relative;
  top: 80%;
  max-width: 1600px;
  margin: 0 auto;
  color: #fff;
  /* font-family: "Helvetica Neue", Arial, sans-serif; */
}

.slider-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 30px;
  background: transparent;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.slider-content-wrapper {
  flex: 1;
  position: relative;
  min-height: 60px;
}

.slider-content {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  width: 100%;
}

.slider-content.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.slider-subtitle {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.slider-address {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

.slider-address .price {
  font-weight: 600;
}

.slider-line {
  flex-shrink: 0;
  width: 100px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  margin: 0 30px;
}

.slider-btn {
  width: 240px;
  height: 70px;
  background-color: #eac9c1;
  color: var(--color-black);
  padding: 0.75rem 2rem;
  border-radius: 0;
  border: none;
  transition: background-color var(--transition-fast),
    color var(--transition-fast);
}

.slider-btn:hover {
  background-color: white;
  color: black;
}

/* Pagination (line with active dot) */
.slider-pagination {
  position: relative;
  bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  gap: 0px;
}

.slider-pagination .dot {
  display: block;
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.3s ease;
}

.slider-pagination .dot.active {
  background: #fff;
}

/* ===========================
   HERO RESPONSIVE STYLES
   =========================== */

/* Desktop Baseline (≥1366px) → your original styles remain as-is */
@media (max-width: 1500px) {
  .hero-content {
    width: 80%;
    /*margin-top: -5%; */
  }
  .slider-wrapper {
    width: 80%;
  }
  .hero-content h1 {
    width: 100%;
  }
  .hero-content .second-heading {
    width: 100%;
  }
  .hero-content .third-heading {
    width: 100%;
  }
  .hero-content p {
    font-size: var(--fs-base);
    letter-spacing: var(--ls-sm);
    font-weight: 300;
    margin: 0;
    color: var(--color-white);
    line-height: 1;
    margin-top: 2%;
    margin-bottom: 2%;
  }
}

/* Explicitly Lock 1366px */
@media (max-width: 1366px) {
  .background-video {
    /*zoom: 150%;*/
    /* border: 1px solid blue; */
  }

  .background-video iframe {
    left: -30%;
    /* border: 1px solid yellow; */
  }
  .hero-content {
    /* border: 1px solid red; */
    width: 85%;
    margin-top: -10%;
  }
  .hero-content h1 {
    width: 85%;
    font-size: var(--fs-xl);
    line-height: 0.7;
    font-size: 4.5rem;
  }
  .hero-content p {
    font-size: var(--fs-base);
    line-height: 1;
    margin-top: 2%;
  }
  .slider-box {
    flex-direction: row;
    align-items: center;
    padding: 40px 30px;
  }
  .slider-line {
    display: block;
  }
  .slider-btn {
    width: 240px;
    height: 70px;
    font-size: 1rem;
  }
  .slider-address {
    font-size: 18px;
  }
  .menu-right::before {
    left: 61% !important;
  }
  .slider-wrapper {
    top: 73%;
  }
}
@media (max-width: 1280px) {
  .hero-content {
    width: 90%;
    margin-top: -8%;
  }
  .hero-content p {
    margin-top: 2%;
  }
}

/* Large Tablets & Small Laptops (≤1200px) */
@media (max-width: 1200px) {
  .hero-content {
    width: 90%;
    margin-top: -10%;
  }
  .hero-content h1 {
    width: 80%;
    font-size: 4.5rem;
    line-height: 1;
  }
  .hero-content p {
    line-height: 1;
  }
  .slider-box {
    padding: 30px 20px;
  }
  .slider-btn {
    width: 200px;
    height: 60px;
    font-size: 0.9rem;
  }
  .menu-right::before {
    left: 63% !important;
  }
  .slider-wrapper {
    border: #000;
    top: 78%;
  }
}
@media (max-width: 1024px) {
  .hero-content {
    width: 90%;
    /* margin-top: -10% */
  }
  .hero-content h1 {
    width: 100%;
    font-size: 4.4rem;
    line-height: 1;
  }
  .hero-content p {
    font-size: 1.2rem;
    margin-top: 15px;
    line-height: 1;
  }
}
/* Tablets (≤992px) */
@media (max-width: 992px) {
  .hero-content {
    width: 90%;
  }
  .hero-content h1 {
    width: 100%;
    font-size: 4.4rem;
    line-height: 1;
  }
  .hero-content p {
    font-size: 1.2rem;
    margin-top: 15px;
    line-height: 1;
  }
  .slider-box {
    /* flex-direction: column; */
    align-items: flex-start;
    gap: 20px;
  }
  .slider-line {
    display: none;
  }
  .slider-btn {
    width: 180px;
    height: 55px;
    font-size: 0.85rem;
  }
  .slider-address {
    font-size: 16px;
  }
  .menu-right::before {
    left: 66% !important;
  }
}

/* Large Phones & Small Tablets (≤768px) */
/* @media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100vh;
  }
  .hero-content {
    top: auto;
    transform: none;
    padding: 40px 20px;
    text-align: center;
  }
  .hero-content div {
    position: static;
    transform: none;
    width: 100%;
  }
  .hero-content div h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    width: 100%;
  }
  .hero-content div p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .slider-wrapper {
    top: auto;
    margin-top: 30px;
    padding: 0 15px;
  }
  .slider-box {
    padding: 20px;
  }
  .slider-btn {
    width: 160px;
    height: 50px;
    font-size: 0.8rem;
  }
  .slider-address {
    font-size: 15px;
  }
} */

/* Small Phones (≤576px) */
@media (max-width: 576px) {
  .hero-content {
    /* top: -200px; */
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 0.85rem;
  }
  .slider-box {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
  }
  .slider-subtitle {
    font-size: 10px;
  }
  .slider-address {
    font-size: 14px;
  }
  .slider-btn {
    width: 150px;
    height: 45px;
    font-size: 0.75rem;
  }
  .slider-pagination .dot {
    width: 25px;
  }
  .slider-pagination {
    margin-top: 22px !important;
  }
  .menu-right {
    display: none !important;
  }
  .slider-wrapper {
    top: 75%;
  }
}

/* Extra Small Phones (≤400px) */
@media (max-width: 480px) {
  .hero {
    height: 75vh;
  }
  .hero-content {
    top: -100px;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-content p {
    font-size: 0.8rem;
  }
  .slider-address {
    font-size: 13px;
  }
  .slider-btn {
    width: 140px;
    height: 40px;
    font-size: 0.7rem;
  }
  .slider-pagination {
    margin-top: 22px !important;
  }
  .menu-right {
    display: none !important;
  }
}

/* =======================
   Header Styles
======================= */

/* Default header (top of page) */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  color: white;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--transition-fast),
    backdrop-filter var(--transition-fast);
}

.main-header.scrolled {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
}

.left-nav-box,
.right-nav-box,
.right-nav-box-links {
  display: flex;
  align-items: center;
}

.right-nav-box-links {
  gap: 1.3rem;
}

.right-nav-box {
  gap: 1.3rem;
}

.left-nav-box {
  gap: 1.3rem;
}

.logo-font {
  font-family: var(--font-logo);
  font-style: italic;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1;
  text-align: center;
}

.logo-font-main {
  font-size: var(--fs-lg);
  line-height: 1;
}
.logo-font-main img {
  max-height: 6.4rem;
  filter: invert(1);
}

.logo-font-sub {
  font-size: var(--fs-base);
  letter-spacing: var(--ls-md);
  text-transform: uppercase;
}

.nav-link {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-sm);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--color-gray-light);
}

.nav-link svg {
  position: absolute;
  left: 20%;
  z-index: 1;
  transition: transform var(--transition-fast);
}

.nav-link:hover svg {
  transform: rotate(180deg);
}

/* Dropdown */
.sub-nav-container {
  position: relative;
}

.sub-nav {
  position: absolute;
  top: calc(100% + 10px);
  transform: translateX(0%);
  min-width: 200px;
  color: white;
  background-color: black;
  padding: 0.5rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
  white-space: nowrap;
}

.sub-nav-container:hover .sub-nav {
  opacity: 1;
  visibility: visible;
}

.sub-nav-link {
  display: block;
  padding: var(--sp-nav-item);
  font-size: var(--fs-xs);
}

.sub-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1280px) {
  .logo {
    justify-content: flex-start !important;
  }
}
.nav-item {
  position: relative;
  list-style: none;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

/* Badge above the link */
.badge {
  position: absolute;
  top: -10px; /* move it above link */
  left: 75%; /* center horizontally */
  transform: translateX(-50%);
  font-size: 0.6rem; /* small text */
  font-weight: 600;
  color: white;
  /* text-transform: uppercase; */
  opacity: 0.85; /* slightly soft */
  white-space: nowrap;
  pointer-events: none; /* doesn’t interfere with clicks */
}
/*==========================
        Hamburger 
============================*/
.hamburger-button .line {
  transition: all var(--transition-fast);
}

.hamburger-button.is-open .line:nth-child(2) {
  opacity: 0;
  transform: translateX(100%);
}

.hamburger-button.is-open .line:first-child {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-button.is-open .line:last-child {
  transform: rotate(45deg) translate(-5px, -6px);
}
.hamburger-button div img {
  filter: invert(1);
}
/*=============================
        Full-screen Menu 
=============================*/
/* .full-screen-menu {
  transition: transform var(--transition-bounce);
  transform: translateX(100%);
  z-index: var(--z-menu);
}
*/
.full-screen-menu.is-open {
  transform: translateX(0);
  overflow: hidden;
}

.no-scroll {
  overflow: hidden;
}
.full-screen-menu {
  transition: transform var(--transition-bounce);
  transform: translateX(100%);
  z-index: var(--z-menu);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow-y: auto;
  /* border: 2px solid red; */
}
.full-screen-menu-inner {
  /* border: 2px solid blue; */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sidebar-content {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  /* gap: 400px; */
}
.menu-left {
  display: flex;
  justify-content: center;
  align-items: center;
}
.full-screen-menu.is-open {
  transform: translateX(0);
}
.menu-left ul {
  line-height: 1.2;
}

.menu-left ul li {
  font-size: 90px;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: color 0.3s ease, transform 0.6s ease;
  transform: translateX(-100px);
}
.menu-left ul li:hover {
  color: #bfbfbf;
  transform: translateX(0);
}

.menu-left ul li a {
  text-decoration: none;
  color: #bfbfbf;
}
.counter-line {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%) translateX(-50px);
  opacity: 0;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  transition: all 0.4s ease;
}
.counter-line span {
  display: inline-block;
  width: 50px;
  height: 1px;
  background: #fff;
  margin-left: 8px;
}
.menu-left ul li:hover .counter-line {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}
.preview-img {
  position: absolute;
  opacity: 0;
  transition: all 0.6s ease;
  border-radius: 8px;
  pointer-events: none;
  transform: scale(0.8);
  z-index: 999999999;
}
.preview-img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 999999;
}
.menu-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 58%;
  width: 1px;
  height: 950px;
  z-index: 1;
  background-color: #676767;
  opacity: 0.3;
}
.menu-right ul {
  line-height: 1.2;
}
.menu-right ul li {
  font-size: 40px;
  font-family: var(--font-heading);
  cursor: pointer;
}
.menu-right ul li a {
  transition: transform 0.6s ease;
}
.menu-right ul li:hover a {
  transform: translateX(50px);
}

.circle-wrapper {
  position: absolute;
  top: 2%;
  left: 51%;
  width: calc(2 * var(--circle-radius));
  height: calc(2 * var(--circle-radius));
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 2px solid blue; */
  /* width: 18%;
    height: 33%; */
}

.circle-icon {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  stroke: #676767;
  opacity: 0.5;
  stroke-width: 1;
}

.circle-line {
  fill: none;
  stroke-width: 1;
}

.circle-base {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-dasharray: calc(2 * var(--circle-radius) * 3.1415926);
  stroke-dashoffset: 0;
}

.circle-hover {
  stroke: var(--colorBrownDark);
  stroke-dasharray: calc(var(--circle-radius) * 3.1415926 * 2);
  transition: stroke-dashoffset 0.8s ease-in-out;
}

.circle-hover.left {
  transform: rotate(-90deg);
  transform-origin: center;
  stroke-dashoffset: calc(var(--circle-radius) * 3.1415926 * 2);
}

.circle-hover.right {
  transform: rotate(90deg);
  transform-origin: center;
  stroke-dashoffset: calc(var(--circle-radius) * 3.1415926 * 2);
}

.circle-wrapper:hover .circle-hover.left {
  stroke-dashoffset: calc(var(--circle-radius) * 3.1415926);
}

.circle-wrapper:hover .circle-hover.right {
  stroke-dashoffset: calc(var(--circle-radius) * 3.1415926);
}

.circle-link {
  /* border: 2px solid red; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-decoration: none;
  color: white;
  font-family: var(--global-primary-font-family);
  font-size: 1.5rem;
  letter-spacing: 1;
  /* text-transform: uppercase; */
  transition: color 0.3s ease-in-out;
  outline: none;
  display: flex;
  align-items: center;
  padding: 25px;
  background-color: black;
}

.circle-link:hover {
  color: var(--hoverColor);
}

.arrow-wrapper {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Adjusted for a faster animation */
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.left-arrow-wrapper {
  left: -1rem;
  opacity: 0;
  transform: translateX(-100%);
}

.right-arrow-wrapper {
  right: -1rem;
  opacity: 1;
  transform: translateX(0);
}

.circle-wrapper:hover .left-arrow-wrapper {
  opacity: 1;
  transform: translateX(0);
}

.circle-wrapper:hover .right-arrow-wrapper {
  opacity: 0;
  transform: translateX(100%);
}

/* Pseudo-element styles for the arrow icon */
.arrow-wrapper::before,
.arrow-wrapper::after {
  content: "";
  position: absolute;
  background-color: currentColor;
  transition: transform 0.4s ease-in-out;
}

.arrow-wrapper::before {
  width: 0.75rem;
  height: 2px;
  transform: rotate(-45deg);
  transform-origin: right center;
}

.arrow-wrapper::after {
  width: 0.75rem;
  height: 2px;
  transform: rotate(45deg);
  transform-origin: right center;
}

/* Adjust pseudo-elements for the left-pointing arrow */
.left-arrow-wrapper::before,
.left-arrow-wrapper::after {
  transform-origin: right center;
}

.left-arrow-wrapper::before {
  transform: rotate(45deg);
}

.left-arrow-wrapper::after {
  transform: rotate(-45deg);
}

/* ---------------- Default (≥1366px) ---------------- */
/* Your original styles stay as-is. No changes here. */

/* ---------------- Medium Screens (max-width: 1359px) ---------------- */
@media (max-width: 1366px) {
  .menu-left ul li {
    font-size: 70px;
    margin-left: 50px;
    transform: translateX(-50px);
  }
  .menu-right ul li {
    font-size: 30px;
  }

  .counter-line {
    /* left: -60px; */
    font-size: 0.8rem;
  }
}

/* ---------------- Tablets / Small Laptops (max-width: 1199px) ---------------- */
@media (max-width: 1199px) {
  .sidebar-content {
    /* flex-direction: column; */
    gap: 40px;
    /* text-align: center; */
  }
  .menu-left ul li {
    font-size: 60px;
    /* margin-left: 0 !important;  */
    /* transform: none; */
  }
  .menu-right {
    /* align-items: center; */
    margin-left: 0 !important;
  }
  .menu-right ul li {
    font-size: 26px;
  }

  .counter-line {
    left: -80px;
    font-size: 0.75rem;
  }
}

/* ---------------- Tablets & Large Phones (max-width: 991px) ---------------- */
@media (max-width: 991px) {
  .menu-left ul li {
    font-size: 45px;
    line-height: 1.4;
  }
  .menu-right ul li {
    font-size: 22px;
  }
}

/* ---------------- Small Phones (max-width: 767px) ---------------- */
@media (max-width: 767px) {
  .sidebar-content {
    flex-direction: column !important;
    gap: 40px;
    text-align: center;
  }
  .full-screen-menu-inner {
    flex-direction: column;
    padding: 20px;
  }
  .menu-left ul li {
    font-size: 50px;
    /* margin: 10px 0; */
    /* transform: none; */
  }
  .menu-right ul li {
    font-size: 18px;
  }
  .menu-left ul li:nth-child(odd) {
    margin-left: 0px !important;
  }
  .menu-left ul li {
    margin-left: 0;
    transform: translateX(-50px);
  }
  .menu-left {
    margin-left: 100px;
  }
  .menu-right {
    display: none !important;
  }
}

/* ---------------- Extra Small Phones (max-width: 400px) ---------------- */
@media (max-width: 450px) {
  .sidebar-content {
    flex-direction: column !important;
    gap: 40px;
    text-align: center;
  }
  .menu-left ul li {
    font-size: 40px;
  }
  .menu-right ul li {
    font-size: 16px;
  }

  /* .menu-left ul li:nth-child(odd){
    margin-left: 0px !important;
  } */
}
@media (max-width: 400px) {
  .sidebar-content {
    flex-direction: column !important;
    gap: 40px;
    text-align: center;
  }
  .menu-left ul li {
    font-size: 30px;
  }
  .menu-right ul li {
    font-size: 16px;
  }

  /* .menu-left ul li:nth-child(odd){
    margin-left: 0px !important;
  } */
}

/*=========== Search */
/* Nav basics */
/*=========== Header + Nav */
.site-header {
  background: #000;
  padding: 0 20px;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff4365;
}

/*=========== Search Box */
.search {
  position: relative;
  height: 40px;
  width: 160px;
}

.search::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-1px);
  width: 2px;
  background: #fff;
  bottom: 40px;
  border-radius: 50px;
  opacity: 1;
  transition: all 400ms ease-in-out 500ms, opacity 200ms linear 1000ms;
}

.search path {
  stroke: white;
  stroke-dashoffset: 0;
  stroke-dasharray: 400;
  transition: all 500ms ease-in-out;
}

.search span {
  position: absolute;
  top: 50%;
  left: 0;
  height: 36px;
  line-height: 36px;
  width: 100%;
  margin-top: -18px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
  color: white;
  pointer-events: none;
  user-select: none;
  transition: all 400ms ease-in-out;
  opacity: 1;
  transform: scale(1);
  /* text-transform: uppercase; */
}

/* Input + mirror text */
.search input,
.search p {
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  height: 36px;
  line-height: 36px;
  margin-top: -18px;
  font-size: 14px;
  white-space: nowrap;
  text-align: left;
}

.search input {
  color: transparent; /* hide input text */
  caret-color: white; /* keep cursor visible */
  background-color: transparent;
  border: 0;
  outline: none;
}

.search p {
  color: white;
  pointer-events: none;
  overflow: hidden; /* clip extra text */
  text-overflow: clip;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  direction: ltr;
  text-align: left;
}

.search p:after,
.search p:before {
  content: "";
  opacity: 0;
  width: 2px;
  height: 24px;
  border-radius: 20px;
  margin-top: 4px;
  transition: all 0.2s ease-in-out;
  transition-delay: 1000ms;
  display: inline-block;
}

.search p:after {
  position: relative;
  bottom: 4px;
  left: 4px;
  background: #ff4365; /* pink blinking cursor */
  animation: blinky 450ms linear infinite alternate;
}

@keyframes blinky {
  0% {
    background: transparent;
  }
  100% {
    background: #ff4365;
  }
}

/* --- Animation states --- */
.search.active::before {
  top: 6px;
  bottom: 6px;
  opacity: 0;
}

.search.active path {
  stroke-dashoffset: -400;
}

.search.active p {
  pointer-events: all;
}

.search.active span {
  transform: scale(0);
  opacity: 0;
}

.search.remove::before {
  transition: all 200ms linear 200ms, opacity 0ms linear 0ms;
  top: 40px;
  bottom: 2px;
  opacity: 1;
}

.search.remove p:before,
.search.remove p:after {
  transition: all 0ms;
  opacity: 0;
}

.search.remove path {
  stroke-dashoffset: -800;
  transition-delay: 400ms;
}

.search.remove span {
  transform: scale(1);
  opacity: 1;
  transition-delay: 400ms;
}

.search.done::before {
  top: 0;
  bottom: 40px;
  opacity: 1;
  transition: none;
}

.search.done path {
  stroke-dashoffset: 0;
  stroke-dasharray: 400;
  transition: none;
}

/* Menu */
.menu-link {
  font-family: var(--font-logo);
  font-size: var(--fs-xl);
  font-style: italic;
  color: var(--color-white);
  line-height: 1;
  font-weight: 300;
  transition: transform var(--transition-fast);
}

.menu-link:hover {
  transform: translateX(20px);
}

.menu-link.home {
  font-weight: 500;
}

.small-link-list {
  list-style: none;
  padding: 0;
}

.small-link-list li a {
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: var(--ls-sm);
  color: var(--color-gray-soft);
  transition: color var(--transition-fast);
}

.small-link-list li a:hover {
  color: var(--color-white);
}

.menu-image-container {
  position: absolute;
  width: 250px;
  height: 250px;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 10;
}

.menu-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-bounce);
  transform: translateX(100%);
}

.menu-link-item:hover .menu-image-container {
  opacity: 1;
}

.menu-link-item:hover .menu-image {
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 1023px) {
  .header-container {
    padding: 0 1.5rem;
  }
  .left-nav-box,
  .right-nav-box-links {
    display: none;
  }
  .logo-text {
    font-size: var(--fs-lg);
  }
  .menu-link {
    font-size: var(--fs-lg);
  }
  .small-link-list {
    display: none;
  }
  .menu-image-container {
    display: none;
  }
  .full-screen-menu .container--l {
    justify-content: center;
    align-items: center;
  }
}

/* .nav-link.active {
  text-decoration: underline;
  text-underline-offset: 6px; 
  text-decoration-thickness: 2px; 
} */
.nav-link:hover {
  text-decoration: underline;
  text-underline-offset: 6px; /* optional, pushes underline away from text */
  text-decoration-thickness: 3px; /* optional, makes underline thicker */
}


/*========================video popup===============================*/
.pop-up-video {
  width: 300px;
  height: 400px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  z-index: 1000;
  left: 0.5rem;
  bottom: 1rem;
  padding: 10px;
  opacity: 0;
  z-index: 9999 !important;
  visibility: hidden;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}

.pop-up-video.is-visible {
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  to {
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
  }
}

.pop-up-video.is-hiding {
  animation: fadeOutDown 0.5s ease-in forwards;
}

.cross-button {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cross-button button {
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cross-button i {
  font-size: 16px;
  color: #000;
  transition: transform 0.5s ease;
}

.cross-button i:hover {
  color: #eac9c1;
  transform: rotate(360deg);
}

.pop-up-video video {
  width: 100%;
  height: 70%;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .pop-up-video {
    width: 70%;
    height: 200px;
    right: 10px;
    bottom: 10px;
  }
}
@media (max-width: 500px) {
  .pop-up-video {
    display: none !important;
  }
}

