@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: #ffffff4d #ffffff0d;
}

::-webkit-scrollbar {
  width: 8px;
}

/* Scrollbar track (background) */
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
}

/* Scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background: #ffffff33;
  border: 1px solid #ffffff4d;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease;
}

/* On hover */
::-webkit-scrollbar-thumb:hover {
  background: #ffffff66;
}

::selection {
  background: #ffcc33c8;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  max-width: 100vw;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif !important;
}

main {
  padding-top: 75px;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* For Firefox */
input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* ----------------------theme style-------------------------- */

:root {

  --header_primary_color: #FDCD18;

  --header_primary_text: #ffffff;
  --header_primary_bg: #00000000;

  --header_secondary_text: #D9D9D9;
  --header_secondary_bg: #FDCD18;

  --header_btn_primary_text: #000000;
  --header_btn_primary_bg: #FDCD18;

  --header_btn_secondary_text: #ffffff;
  --header_btn_secondary_bg: #3D3D3D;

  --footer_primary_bg: #000000;
  --footer_primary_text: #ffffff;
  --footer_secondary_bg: #D9D9D9;
  --footer_secondary_text: #D9D9D9;

  --blur_primary_bg: rgba(38, 40, 44, 0.819);
  --blur_secondary_bg: rgba(255, 255, 255, 0.05);

}

.nav_theme__book___cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme_toggle_btn {
  display: none;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: transparent;
}

.toogle_icon_svg img {
  width: 18px;
  height: 18px;
}

/* --------------------------------- Navigation Styles --------------------------------- */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.navbar {
  background-color: var(--header_primary_bg);
  color: var(--header_primary_text);
  padding: 0 20px;
  width: 100%;
  max-width: 100%;
  height: 75px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: all 0.7s ease;
}

.navbar.shrink {
  top: 0.7rem;
  max-width: 1200px;
  width: calc(100% - 40px);
  padding: 1rem;
  border-radius: 60px;
  background-color: var(--blur_primary_bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background-clip: padding-box;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.7s ease;
}

.navbar.shrink .nav_cta a {
  border-radius: 30px;
}

.navbar.hide {
  transform: translateY(-120%);
  transition: all 0.5s ease;
}

.navbar.show {
  transform: translateY(0%);
  transition: all 0.5s ease;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  height: 38px;
  width: auto;
}

.nav_links {
  display: flex;
  gap: 3rem;
  list-style: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.nav_links li {
  position: relative;
}

.nav_links li a {
  color: var(--header_primary_text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.6s ease;
  cursor: pointer;
}

.nav_links li a:hover {
  color: var(--header_primary_color);
}

.notification_badge {
  background-color: var(--header_secondary_bg);
  color: var(--header_btn_primary_text);
  border-radius: 5px;
  padding: 0rem 0.3rem;
  font-size: 0.6rem;
  font-weight: 900;
  position: absolute;
  top: -10px;
  right: -10px;
  width: fit-content;
}

.nav_cta {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nav_cta a {
  background-color: var(--header_btn_primary_bg);
  color: var(--header_btn_primary_text);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.6s ease;
  text-decoration: none;
  cursor: pointer;
}

.nav_cta a:hover {
  background-color: var(--header_btn_secondary_bg);
  color: var(--header_btn_secondary_text);
}

.nav_cta_mobile {
  display: none;
  align-items: center;
}

.nav_cta_mobile a {
  background-color: var(--header_btn_primary_bg);
  color: var(--header_btn_primary_text) !important;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.7rem;
  text-decoration: none;
  transition: all 0.6s ease;
}

/* --------------------- hamburger --------------------- */

.nav_toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav_toggle span {
  width: 25px;
  height: 3px;
  border-radius: 2px;
  transition: all 0.3s ease;
  background-color: var(--header_primary_text);
}

.nav_toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav_toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav_toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --------------------------------- bookingSlider Styles --------------------------------- */

.bookingSideNav {
  background-color: rgba(0, 0, 0, 0.413);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.slider-panel {
  position: fixed;
  right: 0;
  transform: translateX(100%);
  width: 100%;
  max-width: 600px;
  height: 100dvh;
  color: #fff;
  transition: transform 0.3s;
  z-index: 5;
  overflow: hidden;
  background-color: #fff;
  box-shadow: -8px 12px 21px -7px rgba(0, 0, 0, 0.3);
}

.slider-panel.open {
  transform: translateX(0);
}

.loader1 {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #ffcc33;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin-left: auto;
  margin-right: auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.dynamic_iframe {
  border: 0;
  width: 100%;
  height: 100dvh;
}

/* ------------------ FOOTER ------------------ */
footer {
  position: relative;
  overflow: hidden;
  padding-top: 50px;
  color: #e0e0e0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid var(--border-primary);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

footer::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 205, 24, 0.15) 0%, transparent 70%);
  filter: blur(15px);
  z-index: 0;
  pointer-events: none;
}

.footer_gradien_bg {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 205, 24, 0.15) 0%, transparent 60%);
  filter: blur(25px);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

.footer_container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer_links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer_logo img {
  transition: transform 0.3s ease;
}

.footer_logo img:hover {
  transform: scale(1.03);
}

.footer_logo p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 20px 0;
  font-size: 1rem;
  max-width: 400px;
}

.social_links {
  display: flex;
  gap: 18px;
  font-size: 1.3rem;
}

.social_links a {
  color: var(--accent-primary);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-glass);
  text-decoration: none;
  border: 1px solid var(--border-secondary);
}

.social_links a:hover {
  color: var(--bg-primary);
  transform: translateY(-4px) scale(1.1);
  background: var(--accent-primary);
  box-shadow: var(--shadow-md);
}

.footer_links__section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: start;
}

.footer_column h4 {
  font-size: 1.15rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.footer_column h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
  transition: width 0.3s ease;
}

.footer_column h4:hover::after {
  width: 100%;
}

.footer_column a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  cursor: pointer;
  font-size: 0.95rem;
  margin: 12px 0;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer_column a::before {
  content: '›';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--accent-primary);
}

.footer_column a:hover {
  color: var(--text-primary);
  transform: translateX(6px);
  text-shadow: 0 0 8px rgba(253, 205, 24, 0.4);
}

.footer_column a:hover::before {
  opacity: 1;
  left: -12px;
}

.footer_cta {
  background: var(--bg-glass-strong);
  padding: 25px;
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-primary);
  box-shadow: var(--shadow-sm);
  max-width: 500px;
}

.footer_cta h4 {
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-shadow: 0 0 8px rgba(253, 205, 24, 0.2);
}

.footer_cta p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.newsletter_form {
  display: flex;
  gap: 12px;
}

.newsletter_form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  background: var(--bg-glass);
  color: var(--text-primary);
  font-size: 0.95rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}
.newsletter_form input::placeholder{
  color: white;
}
.newsletter_form input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(253, 205, 24, 0.15), var(--shadow-sm);
}

.newsletter_form button {
  background: var(--gradient-primary);
  color: var(--bg-primary);
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.newsletter_form button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--gradient-secondary);
}

.footer_bottom {
  border-top: 1px solid var(--border-primary);
  font-size: 0.9rem;
  color: var(--text-muted);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
}

.footer_badge {
  background: var(--bg-glass-strong);
  color: var(--accent-primary);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid var(--border-primary);
  box-shadow: var(--shadow-sm);
}

/* Animation for gradient background */
@keyframes pulse {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }

  100% {
    opacity: 0.6;
  }
}

/* --------------------- Responsive --------------------- */

@media (min-width: 1440px) {
  .navbar.shrink,
  .footer_container,
  .footer_bottom {
    max-width: 1400px;
  }
}

@media (max-width: 1440px) {
  .nav_links {
    gap: 1.5rem;
  }

  .nav_links li a {
    font-size: 1rem;
  }
}

@media (max-width: 1300px) {

  /* --------------------FOOTER---------------------- */

  .footer_container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 40px;
  }

  .footer_logo {
    flex: 1 1 100%;
  }

  .footer_links {
    flex: 1 1 45%;
    display: flex;
    justify-content: space-between;
  }

  .footer_cta {
    flex: 1 1 45%;
    max-width: 100%;
  }

  .footer_column {
    flex: 1;
    min-width: 150px;
  }

}

/* Standard tablet and below */
@media (max-width: 1024px) {

  /* ------------- Navigation Styles --------------- */
  .nav_toggle {
    display: flex;
  }

  .nav_cta {
    display: none;
  }

  .nav_cta_mobile {
    display: block;
  }

  .nav_links {
    position: absolute;
    top: 75px;
    left: 0;
    flex-direction: column;
    background-color: var(--blur_primary_bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
    gap: 1.5rem;
    max-height: 0;
    width: 100%;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 1.5rem;
    background-clip: padding-box;
    z-index: 999;
  }

  .nav_links.active {
    max-height: 500px;
    padding: 2rem 1.5rem;
    border-radius: 0 0 15px 15px;
  }

  .navbar.shrink {
    width: calc(100% - 20px);
  }

  .navbar.shrink_mobile {
    width: calc(100% - 20px);
    padding: 1rem;
    top: 0.7rem;
    background-color: var(--blur_primary_bg);
    backdrop-filter: unset;
    -webkit-backdrop-filter: unset;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border-radius: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }

  .nav_links li {
    font-size: 1.5rem;
  }

  .notification_badge {
    top: 3px;
    left: 74px;
  }


  /* --------------------FOOTER---------------------- */

  .footer_container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 40px;
  }

  .footer_logo {
    flex: 1 1 100%;
  }

  .footer_links {
    flex: 1 1 45%;
    display: flex;
    justify-content: space-between;
  }

  .footer_cta {
    flex: 1 1 45%;
    max-width: 100%;
  }

  .footer_column {
    flex: 1;
    min-width: 150px;
  }
}

/* Large phones and small tablets */
@media (max-width: 768px) {

  .logo img {
    height: 36px;
  }

  /* --------------------FOOTER---------------------- */

  .footer_container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 20px;
  }

  .footer_logo,
  .footer_links,
  .footer_cta {
    width: 100%;
  }

  .footer_links {
    flex-direction: column;
    gap: 20px;
  }

  .footer_column {
    width: 100%;
  }

  .newsletter_form {
    flex-direction: column;
    gap: 12px;
  }

  .footer_bottom {
    flex-direction: column-reverse;
    align-items: start;
    gap: 10px;
  }

}