/* --- Fonts --- */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/poppins-v24-latin-300.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-weight: 400;
  src: url("../fonts/poppins-v24-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-weight: 600;
  src: url("../fonts/poppins-v24-latin-600.woff2") format("woff2");
}

/* --- Header Essentials --- */
.nr-header-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
}

.nr-header-scrolled {
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
  border-bottom: none !important;
}

/* Nav Link Color Logic */
.nr-nav-link {
  position: relative;
  color: inherit !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nr-nav-link::after,
.nr-mobile-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff8c00, #ee0979);
  transition: width 0.3s ease;
}

.nr-nav-link:hover::after,
.nr-nav-link.active::after,
.nr-mobile-link:hover::after,
.nr-mobile-link.active::after {
  width: 100%;
}

/* Mobile Drawer */
#nr-mobile-drawer {
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
#nr-mobile-drawer.open {
  transform: translateX(0);
}

/* Pinterest Toggle Styling */
.nr-side-title {
  font-family: "Syncopate", sans-serif;
  letter-spacing: -2px;
  line-height: 0.9;
}
.nr-toggle-bar {
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/*--------- Hero Title - Syncopate Font handle ---------------- */
.nr-side-title {
  font-family: "Poppins", sans-serif;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Toggle Circle Positioning */
.nr-toggle-active-right {
  left: calc(100% - 24px) !important;
}

/* Content initial state for GSAP */
.nr-content h1,
.nr-content p,
.nr-content a {
  transform: translateY(40px);
  opacity: 0;
}

.active .nr-content h1,
.active .nr-content p,
.active .nr-content a {
  transform: translateY(0);
  opacity: 1;
}

/* Mobile Drawer Styles */
#nr-mobile-drawer.open {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Hamburger to Cross Animation */
#nr-mobile-btn.active #line1 {
  transform: translateY(10px) rotate(45deg);
}
#nr-mobile-btn.active #line2 {
  opacity: 0;
  transform: translateX(20px);
}
#nr-mobile-btn.active #line3 {
  transform: translateY(-10px) rotate(-45deg);
}

.nr-mobile-link {
  position: relative;
  transition: all 0.3s ease;
}

/* Active Page Style in Mobile */
.nr-mobile-link.active {
  background: linear-gradient(90deg, #ff8c00, #ee0979);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 900;
}
#book-now-btn.active {
  color: white !important;
}

.nr-gallery-item img {
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.nr-gallery-item:hover img {
  transform: scale(1.15);
}

/* Fancybox Customization */
.fancybox__container {
  --fancybox-bg: rgba(24, 24, 27, 0.98);
}

.fancybox__toolbar {
  --f-button-bg: rgba(255, 255, 255, 0.1);
  --f-button-hover-bg: #ff8c00;
}

:root {
  --f-z-index: 999999 !important;
}

.fancybox__container {
  z-index: 999999 !important;
}

.is-animated.fancybox__container {
  z-index: 999999 !important;
}

/* Continuous Single Line Animation */
@keyframes fast-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-fast-marquee {
  display: flex;
  animation: fast-marquee 15s linear infinite;
}

.nr-marquee-container {
  width: max-content;
}

.nr-marquee-wrapper:hover .animate-fast-marquee {
  animation-play-state: paused;
}
