* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "MinionPro";
  src: url("../fonts/MinionPro-Regular.otf") format("opentype");
}

:root,
html {
  font-family: MinionPro !important;
  scroll-padding-top: 70px;
  line-height: 1.15;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
:root {
  --colorPrimary: #5b5b66;
  --colorSecondary: #d8aa55;
  --colorBackground: #2d2d2d;
  --colorBlack: #000000;
  --colorWhite: #ffffff;
  --colorWhiteOverlay: rgb(99, 99, 99);
}

/* Navbar Starts */
header {
  /* height: 80px; */
  border-bottom: 2px solid var(--colorPrimary);
}
body {
  background-color: var(--colorBackground);
  color: var(--colorWhite);
}

/* Navbar */
.navbar-nav {
  justify-content: flex-end;
  width: 100%;
}

.navbar-nav .nav-link {
  color: var(--colorWhite);
  text-transform: uppercase;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  background-color: var(--colorBackground);
  height: 100%;
  color: var(--colorSecondary);
}

.nav-link:hover {
  background-color: var(--colorBackground);
  color: var(--colorSecondary);
}

.nav-icon {
  margin-right: 5px;
}
@media only screen and (min-width: 1000px) {
  .navbar-nav .nav-link {
    font-size: 1.05vw !important;
    letter-spacing: 0.02vw;
  }
}
@media screen and (max-width: 600px) {
  .navbar-brand img {
    height: 45px;
  }
}
/*  */

@media screen and (min-width: 1000px) {
  .mobileview {
    display: none;
  }
}

.head_call_btn {
  color: var(--colorSecondary);
}

/* Navbar Ends */

main {
  margin-top: 80px;
}

/* Slider */
.carousel {
  overflow: hidden !important;
  /* max-height: calc(100vh - 80px); */
}

.carousel-indicators .active {
  background-color: var(--colorSecondary) !important;
}

@media screen and (max-width: 600px) {
  .carousel-item .banner1 {
    content: url("../img/banners/mobile_banner_1.jpeg");
  }
  .carousel-item .banner2 {
    content: url("../img/banners/mobile_banner_2.jpeg");
  }
  .carousel-item .banner3 {
    content: url("../img/banners/mobile_banner_3.jpeg");
  }
}

.carousel-control-prev,
.carousel-control-next {
  background-color: var(--colorPrimary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  margin: 20px;
  /* display: none; */
}

.carousel-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
}
.carousel-indicators .active {
  background-color: var(--colorSecondary) !important;
}

/* Overview */

.overview-paragraph {
  text-align: justify;
  font-size: 1.1rem;
  line-height: 1.6;
}

.text-left {
  text-align: left !important;
}

.overview_img_wrapper {
  position: relative;
  padding: 8px;
  border-radius: 20px;
}

.overview_img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  background: #fff;
}

.overview_img_wrapper::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(120deg, #fef0b0, var(--colorSecondary), #d7a857);
  background-size: 300% 300%;
  animation: gradientMove 8s ease infinite;
  z-index: -1;
  -webkit-animation: gradientMove 8s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Gallery */
.gal-img {
  /* width: 19em !important; */
  /* height: 250px; */
  max-height: 250px;
  aspect-ratio: 4/3;
}
.gal-img img {
  width: 100% !important;
  height: 100%;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  border: 5px double var(--colorSecondary);
  box-shadow:
    rgba(14, 30, 37, 0.5) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.5) 0px 2px 16px 0px;
}

/* Configuration */
.config-block .row {
  justify-content: center;
}

.config-inner {
  text-align: center;
  font-weight: normal;
  min-height: 150px;
  padding: 10px;
  margin-top: 20px;
  -webkit-box-shadow: 0px 0px 7px 0px var(--colorWhiteOverlay);
  -moz-box-shadow: 0px 0px 7px 0px var(--colorWhiteOverlay);
  box-shadow: 0px 0px 7px 0px var(--colorWhiteOverlay);
  border-radius: 30px 0px 30px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 5px double var(--colorSecondary);
  background: #4f4f4f;
}
.config-price {
  background: var(--colorSecondary);
  width: 75%;
  margin: 15px auto;
  padding: 8px;
  text-transform: uppercase;
  border-radius: 15px 0px;
  font-size: 18px;
}

.config-price a {
  text-decoration: none;
  color: var(--colorWhite);
}

.config-room {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--colorSecondary);
  font-family: "Trajan_Pro_Bold";
}
.config-size {
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--colorWhite);
}
.plan-image {
  border-bottom: 2px solid var(--colorSecondary);
}

/* amenities */

.amenities-card {
  width: 100%;
  height: 15vw;
  min-height: 250px;
  background-color: rgba(0, 0, 0);
  position: relative;
  overflow: hidden;
  border-radius: 0.4rem;
  box-shadow:
    -0.5rem -0.5rem 2rem rgba(0, 0, 0, 0.2),
    0.5rem 0.5rem 2rem rgba(0, 0, 0, 0.2);
  margin-bottom: 25px;
}

.amenities-card:hover .title {
  transform: translateY(100%);
}

.amenities-card:hover .photo {
  opacity: 1;
}

.amenities-card .title {
  background-color: rgba(32, 37, 41, 0.5);
  backdrop-filter: blur(0.5rem);
  width: 100%;
  text-align: center;
  /* height: 35%; */
  position: absolute;
  bottom: 0%;
  padding: 1rem;
  border-top: 0.1rem solid #4c555c;
  box-shadow: 0rem -0.1rem 0.5rem rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transition: 0.5s ease-in;
}

.amenities-card .photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  opacity: 0.8;
  transition: 0.5s ease-in-out;
  /* aspect-ratio: 3/2; */
}

.amenities-card h4 {
  font-family: "MinionPro";
  font-weight: 500;
  font-size: 1.5em;
  color: #f3f5f8;
  text-transform: uppercase;
}

/* Location Section */

.location-section {
  background-color: var(--light-color);
}
/* .location-section {
  padding: 100px 0;
  background-color: #f9f9f9;
  position: relative;
  background: linear-gradient(to right, #fafafa, #f5f5f5);
} */

.location-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url("/api/placeholder/800/1600") center/cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.location-container {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 500px;
  z-index: 1;
}

.location-map {
  flex: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  background: white;
  height: 100%;
}

@media screen and (max-width: 600px) {
  .location-map {
    height: 400px;
  }
}

.map-container {
  position: relative;
  height: 100%;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border-radius: 20px;
  overflow: hidden;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.location-center-point {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: var(--colorPrimary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 0 0 8px rgba(195, 150, 77, 0.3);
  z-index: 10;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(195, 150, 77, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(195, 150, 77, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(195, 150, 77, 0);
  }
}

.location-points {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.location-point {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.3s ease-out;
}

.location-point:hover {
  z-index: 10;
}

.location-point-icon {
  width: 24px;
  height: 24px;
  background-color: var(--colorBlack);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.location-point.active .location-point-icon,
.location-point:hover .location-point-icon {
  background-color: var(--colorPrimary);
  transform: scale(1.3);
  box-shadow: 0 5px 15px rgba(195, 150, 77, 0.4);
}

.location-point-label {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--colorBlack);
  color: white;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 0.7rem;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.location-point:hover .location-point-label {
  opacity: 1;
  top: -35px;
}

.radius-circle {
  z-index: 2;
}

.location-details {
  flex: 1;
  padding-left: 60px;
}

.nav-pills {
  display: flex;
  border-bottom: 2px solid rgba(30, 51, 88, 0.1);
  margin-bottom: 35px;
}

.nav-pills {
  padding: 15px 25px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  margin-right: 10px;
}
.nav-pills .nav-link {
  color: var(--colorBlack);
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link,
.nav-link:hover {
  background-color: transparent;
  color: var(--colorSecondary);
  font-weight: 600;
}

.nav-pills .nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--colorPrimary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.connectivity-tab.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.connectivity-content {
  display: none;
}

.connectivity-content.active {
  display: block;
}

.location-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(195, 150, 77, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.location-card:hover {
  transform: translateX(15px);
  border-left-color: var(--colorPrimary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.location-card:hover::before {
  opacity: 1;
}

.location-card.active {
  border-left-color: var(--colorPrimary);
  background: linear-gradient(to right, rgba(195, 150, 77, 0.05), transparent);
}

.location-icon {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--colorBlack);
  font-size: 1.8rem;
  margin-right: 25px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.location-icon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--colorPrimary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.location-card:hover .location-icon {
  color: var(--colorPrimary);
  background-color: #f0f0f0;
}

.location-card:hover .location-icon::after {
  transform: scaleX(1);
  transform-origin: left;

  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--colorSecondary);
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.location-info {
  flex-grow: 1;
}

.location-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--colorPrimary);
  margin-bottom: 5px;
  text-align: left !important;
}

.location-name i {
  color: var(--colorSecondary);
}
.location-distance {
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
}

.location-distance i {
  margin-right: 5px;
  color: var(--colorPrimary);
}

.time-badge {
  background-color: var(--colorSecondary);
  border-radius: 30px;
  padding: 5px 15px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--colorWhite);
  margin-left: auto;
  display: flex;
  align-items: center;
}

.time-badge i {
  margin-right: 5px;
  color: var(--colorPrimary);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .location-container {
    flex-direction: column;
  }

  .location-map,
  .location-details {
    width: 100%;
  }

  .location-details {
    padding-left: 0;
    padding-top: 40px;
  }
}

@media (max-width: 576px) {
  .nav-pills {
    padding: 12px 0px;
    font-size: 0.88rem;
  }
}

@media screen and (max-width: 600px) {
  .location-card {
    flex-direction: column;
    align-items: start;
  }
}

/* About */
#about_section {
  /* background-color: var(--colorSecondary); */
  background: url("../img/backgrounds/background.jpg") repeat;

  background-repeat: repeat;
  /* background-size: cover; */
  /* height: 970px; */
  background-attachment: fixed;
  padding: 0 !important;
}

.about_overlay {
  background-color: rgba(0, 0, 0, 0.6);
}

#about_section .sub-heading {
  color: var(--colorPrimary);
  font-size: 1.5em;
}

#about_section .sub-heading {
  letter-spacing: 3.5px;
}

.read_more {
  background-color: transparent;
  font-size: 14px;
  margin: 0;
  border-radius: 0;
  width: fit-content;
  padding: 5px 10px;
  color: var(--colorWhite);
}

.form-label {
  display: none;
}
.inputStyle {
  font-size: 1em;
  border-top: none;
  border-left: none;
  border-right: none;
}
.submit-btn,
.submit-btn:hover,
.submit-btn:focus-visible,
.submit-btn:active {
  background-color: var(--colorPrimary) !important;
  border: none !important;
  color: var(--colorWhite) !important;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
}

/* Footer */
.policy_links a {
  color: var(--colorSecondary) !important;
  text-decoration: none;
}

.custom-control-label {
  font-size: x-small !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.modal-body {
  color: var(--colorBlack) !important;
}

/*  */
/* amenities */
#amenities_section_id {
  /* background: url("../img/backgrounds/desktop_bg.jpg"); */
  background-repeat: no-repeat;
  background-size: cover;
  /* padding: 50px 0; */
}
.amenities_section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

figure.snip1113 {
  /* font-family: 'Raleway', Arial, sans-serif; */
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 310px;
  max-width: 310px;
  width: 100%;
  background: #ffffff;
  text-align: center;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.5);

  border-radius: 20px;
}

figure.snip1113 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

figure.snip1113 img {
  max-width: 90%;
  margin: 20px auto;
  display: block;
  position: relative;
  border: 3px solid var(--colorSecondary);
  padding: 15px 15px 65px 15px;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  border-radius: 20px;
}

figure.snip1113 figcaption {
  position: absolute;
  height: 80px;
  bottom: 0px;
  left: 0;
  right: 0;
  display: block;
}

figure.snip1113 h3 {
  background-color: #ffffff;
  color: var(--colorPrimary);
  font-size: 1.2em;
  width: 100%;
  padding: 5px 12px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
}

figure.snip1113 h3 span {
  font-weight: 800;
}

figure.snip1113 h4 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -1px;
  opacity: 0.6;
  font-size: 1.1em;
}

figure.snip1113 h6 {
  color: var(--colorPrimary);
}
