@font-face {
  font-family: "Gilroy-ExtraBold";
  src: url("/public/fonts/Gilroy-ExtraBold.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-Bold";
  src: url("/public/fonts/Gilroy-Bold.ttf") format("truetype");
  font-display: swap;
}

@import url('https://fonts.cdnfonts.com/css/gilroy-bold?styles=20876');

@font-face {
  font-family: "Gilroy-SemiBold";
  src: url("/public/fonts/Gilroy-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-Medium";
  src: url("/public/fonts/Gilroy-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-Regular";
  src: url("/public/fonts/Gilroy-Regular.ttf") format("truetype");
}

.gr {
  font-family: "Gilroy-Regular", sans-serif;
}

@font-face {
  font-family: "Gilroy-Light";
  src: url("/public/fonts/Gilroy-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-UltraLight";
  src: url("/public/fonts/Gilroy-UltraLight.ttf") format("truetype");
}

@font-face {
  font-family: "Paint-Brush";
  src: url("/public/fonts/PaintBrushScript-Regular.otf");
}



/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #dcb36a;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #dcb36a;
}

* {
  margin: 0;
  /* border: 2px solid red; */
}

:root {
  --prime-green: #053c36;
  --secondary-green: #062621;
  --prime-yellow: #dcb36a;
  --secondary-yellow: #fff8f0;
  line-height: 1.5;
  font-weight: 400;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-small {
  font-size: 12px;
}

.font-medium {
  font-size: 16px;
}

.font-large {
  font-size: 24px;
}

.prevent-select {
  -webkit-user-select: none; 
  -ms-user-select: none; 
  user-select: none; 
  -webkit-user-drag: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a,
button {
  font-family: "Gilroy-Regular", sans-serif;
}

.custom-button {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-size: 14px;
  color: white;
  border: 1px solid var(--prime-yellow);
  border-radius: 20px 0;
  padding: 10px 20px;
}

.custom-button:hover {
  font-family: "Gilroy-SemiBold", sans-serif;
  background-color: var(--prime-yellow);
  color: var(--prime-green);
  border-color: var(--prime-yellow);
}

.custom-button2 {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-size: 1rem;
  color: var(--prime-green);
  background-color: var(--prime-yellow);
  padding: 10px 30px;
  border-radius: 20px 0;
}

.custom-button2:hover {
  background-color: var(--prime-green);
  color: var(--prime-yellow);
  border-color: var(--prime-yellow);
}

.custom-button3 {
  background-color: #053c36;
  color: #dcb36a;
}

.custom-button3:hover {
  background-color: #dcb36a;
  color: #053c36;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 10;
  transition: background-color 0.3s ease-in-out;
}

.header-bg {
  background-color: var(--prime-green);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

#resorts {
  transition: background-color 0.3s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.18);
  /* border-width: 0 1px 1px 1px; */
}

.blur-bg {
  color: white;
  backdrop-filter: blur(30px);
  background: 0px 0px 30px rgba(227, 228, 237, 0.37);
  border-bottom: 2px solid rgba(255, 255, 255, 0.18);
  background-color: transparent;
}

.navbar-logo {
  height: 65px;
}

.menu-bg {
  background-color: var(--prime-green);
  color: var(--prime-yellow);
}

.dropdown-menu {
  /* top: 145%; */
  border-radius: 0 0 6px 6px;
}

.dropdown-item {
  color: white !important;
  cursor: pointer;
}

.dropdown-item:hover {
  background-color: var(--prime-yellow) !important;
  color: var(--prime-green) !important;
}

/* Show dropdown menu on hover for large screens */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    /* Optional: Remove margin */
  }

  /* To ensure smooth transition */
  .navbar .dropdown-menu {
    display: none;
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
  }

  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
  }
}

@media (max-width: 991.98px) {

  /* Target mobile screens */
  #navbarNav {
    width: 100vw;
    /* Full viewport width */
    position: fixed;
    top: 90px;
    /* Adjust according to your navbar height */
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  #resorts {
    border: none;
  }

  .dropdown-menu {
    text-align: center;
    /* Center-align text in dropdown menu */
    border: 0;
  }

  .dropdown-item {
    padding: 0.8rem 1rem;
  }

  .dropdown-item:hover {
    color: var(--prime-yellow) !important;
    background-color: var(--prime-green) !important;
  }

  .nav-underline {
    --bs-nav-underline-border-width: 0;
  }
}

html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--secondary-yellow);
  height: 100%;
}

h1 {
  font-family: "Gilroy-ExtraBold", sans-serif;
  color: var(--prime-green);
  font-size: 3.2em;
  line-height: 1.1;
}

h5 {
  font-family: "Gilroy-SemiBold", sans-serif;
  color: var(--prime-yellow);
}

h2 {
  font-family: "Paint-Brush", sans-serif;
  color: var(--prime-yellow);
}

h3,
h4 {
  font-family: "Gilroy-Bold", sans-serif;
  color: var(--prime-green);
  font-weight: 400;
}

p {
  margin: 0;
  font-family: "Gilroy-Medium", sans-serif;
}

hr {
  opacity: 1;
}

.full-height {
  height: 100vh;
}

.navbar-custom {
  transition: background-color 0.5s;
}

.navbar-custom.bg-transparent {
  background-color: transparent;
}

.navbar-custom.bg-colored {
  background-color: rgba(8, 68, 61, 0.8);
  /* Adjust the color as needed */
}

.navbar-toggler,
.navbar-toggler:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
}

.navbar-toggler-icon>i {
  font-size: 2rem;
  color: white;
  font-weight: 600;
}

.nav-link {
  color: white;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--prime-yellow) !important;
}

.active {
  color: var(--prime-yellow) !important;
  background-color: var(--prime-green) !important;
}

.go-back {
  cursor: pointer;
}

footer {
  background-color: var(--secondary-green);
  color: white;
  padding: 30px 20px;
}

.footer .icon {
  margin-right: 10px;
}

.p-8 {
  padding: 0 5rem;
}


.circle-menu {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #dcb36a;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s ease;
}

/* Icon rotation when clicked */
.circle-menu.clicked {
  transform: rotate(45deg);
  /* Rotate icon on click */
}

.circle-menu a {
  align-self: center;
}

/* Popup menu styling */
.popup-menu {
  position: fixed;
  bottom: 90px;
  right: 30px;
  display: none;
  flex-direction: column;
  background-color: #FFFFF7;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show popup on click */
.popup-menu.show {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

/* Popup menu links (no animation) */
.popup-menu a {
  color: #053c36;
  padding: .5rem 1rem;
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4rem;
  border-radius: 4px;
  display: block;
  transition: background-color 0.2s ease;
}

.popup-menu a i {
  font-size: 1.4rem;
  padding-right: .3rem;
}




/* Medium devices (tablets, 768px and up to 992px) */
@media (min-width: 768px) and (max-width: 992px) {
  .footer .icon {
    margin-right: 5px;
  }
}

@media (min-width: 360px) and (max-width: 578px) {
  .navbar-logo {
    height: 55px;
    width: 120px;
    margin-top: 0.5rem;
  }

  .popup-menu {
    padding: 10px 5px;
  }
}

@media (max-width: 360px) {
  .mob-book {
    display: none;
  }

  .navbar-logo {
    width: 120px;
  }
}

@media (max-width: 360px) {
  .navbar-brand img {
    max-width: 100px;
    /* Adjust logo size */
  }

  /* .mob-book, .navbar-toggler {
    margin-right: 0.5rem;
  } */

  .custom-button {
    font-size: 12px;
    /* padding: 0.45rem 0.75rem; */
  }

  .navbar-toggler {
    padding: 0;
  }

  .nav-link {
    font-size: 14px;
  }

  .nav-item {
    margin-bottom: 0.5rem;
  }

  .navbar-logo {
    height: 55px;
  }

  .menu-bg {
    padding: 0.5rem;
  }
}