:root {
  --primary-color: #96a78d;
  --secondary-color: #2c3e50;
  --accent-color: #e74c3c;
  --text-light: #7f8c8d;
  --bg-dark: #1a1a1a;
}
.back {
  background-color: #b8860b;
}
.color,
.text-warnings {
  color: #96a78d;
}
.backs {
  background-color: white;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
}

.font-playfair {
  font-family: "Playfair Display", serif;
}

/* Navigation */
/* .navbar {
            background: rgba(26, 26, 26, 0.95) !important;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            padding: 1rem 0;
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color) !important;
        }

        .navbar-nav .nav-link {
            color: #fff !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }*/

/* Default White Navbar */
.navbar {
  transition: background 0.4s, color 0.4s, padding 0.3s;
}
.navbar .nav-link {
  color: #000 !important; /* black text */
  padding: 8px 16px;
  transition: color 0.3s ease-in-out;
}
.navbar .nav-link.active {
  color: #21504b !important; /* blue active */
}
.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color) !important;
}
/* Black Navbar after Scroll */
.navbar.scrolled {
  background: #ffffff !important;
}
.navbar.scrolled .nav-link {
  color: #000000 !important;
}
.navbar.scrolled .nav-link.active {
  color: #21504b !important; /* gold active */
}
.navbar.scrolled .brand-text {
  color: #21504b !important;
}
.heros {
  height: 60vh; /* Banner height */
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/assets/hero-hotel.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: white;
}

.heros-content {
  position: relative;
  z-index: 2;
}

.heros h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.breadcrumb-text {
  font-size: 1.1rem;
  color: #f1f1f1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Hero Section */
/* .hero {
            height: 150vh;
           
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/assets/hero-hotel.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
        } */

.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: #9a7209;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3);
}

/* Section Styling */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.section-title .subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
/* .about {
            background: #f8f9fa;
        } */

.about-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.modal-title i {
  color: #ffd700; /* Golden VR icon */
  transition: transform 0.3s ease;
}
.modal-title i:hover {
  transform: rotate(20deg) scale(1.2);
}
.btn-close-white {
  filter: drop-shadow(0 0 2px white);
}
.font-playfair {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}
.mission-box {
  background: var(--primary-color);
  color: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  margin-top: 2rem;
}

.awards {
  margin-top: 3rem;
}

.award-item {
  text-align: center;
  padding: 1rem;
}

.award-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Accommodation Section */
.room-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.room-card:hover {
  transform: translateY(-10px);
}

.room-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.room-card-body {
  padding: 2rem;
}

.room-features {
  list-style: none;
  padding: 0;
}

.room-features li {
  display: inline-block;
  background: #f8f9fa;
  padding: 0.5rem 1rem;
  margin: 0.25rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Facilities Section */
.facilities {
  background: var(--bg-dark);
  color: white;
}

/* .facility{
            justify-content: space-between;
            flex-direction: row;
        }
        .facility div{
            background-color: red;
            margin: 1rem;
            width: 45%;
            padding: 0;
        } */

.facility-item {
  background-color: #2c3e50;
  display: flex;
  flex-direction: column;
  text-align: left !important;
  justify-content: start;
  width: 100%;
  height: 250px;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 650px) {
  .facility-item {
    background-color: #2c3e50;
    display: flex;
    flex-direction: column;
    text-align: left !important;
    justify-content: start;
    width: 45%;
    height: 250px;
    margin-bottom: 2rem;
    padding: 5px;
  }

  .fac-cont {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap !important;
  }
}
.facility p {
  width: 100% !important;
}

.facility-item {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.facility-item:hover {
  transform: translateY(-5px);
}

.facility-item i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.facility-item h4 {
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Gallery Section */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Testimonials */
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin: 1rem;
  text-align: center;
}

.stars {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  background: #f8f9fa;
}

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item i {
  color: var(--primary-color);
  width: 30px;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.25);
}

/* Footer */
.footer {
  background: #21504b;
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-color);
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin: 0 0.5rem;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .tagline {
    font-size: 1.2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
  text-decoration: none;
}

/* Virtual Tour Styles */
.tour-navigation {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.tour-controls .btn {
  border-radius: 25px;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.tour-controls .btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.tour-controls .btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.tour-info-panel {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.tour-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 20;
}

.tour-hotspot {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(184, 134, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(184, 134, 11, 0);
  }
}

/* Mobile responsive for virtual tour */
@media (max-width: 768px) {
  .tour-controls {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .tour-controls .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    margin: 0.2rem !important;
  }

  .tour-scene-info h6 {
    font-size: 0.9rem;
  }
}

.room-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.room-card-body h4 {
  font-weight: 700;
}
.room-features li {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #555;
}
.room-features li i {
  color: #9a7209;
}
.badge {
  font-weight: 600;
}

.navbar.scrolled .navbar-toggler-icon {
  filter: invert(
    1
  ); /* Makes default icon white turn black on white background */
}

.text-justify {
  text-align: justify;
}
@media (max-width: 767px) {
  .brand-text {
    display: none;
  }
}
@media (max-width: 767px) {
  .mhide {
    display: none;
  }
}

.foode {
  position: relative;
  background: url("/assets/hero.JPG") no-repeat bottom/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.foode::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(54, 51, 51, 0.55);
}
.foode-content {
  position: relative;
  z-index: 2;
}
.foode h3 {
  font-size: 2rem;
  font-weight: 700;
  color: white !important;
  text-transform: uppercase;
}
.foode p {
  margin-top: 15px;
  font-size: 1.2rem;
  letter-spacing: 1px;
}
.call-btn {
  margin-top: 25px;
  padding: 12px 25px;
  font-size: 1.1rem;
  border-radius: 50px;
  border: none;
  background: #b8860b;
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
}
.call-btn:hover {
  background: #b8860b;
  color: #fff;
}

.text-gold {
  color: #b8860b;
}
.btn-gradient {
  background: linear-gradient(45deg, #b8860b, #d4af37);
  color: #fff;
  border-radius: 30px;
  transition: 0.3s;
}
.btn-gradient:hover {
  opacity: 0.9;
}
.btn-outline-gold {
  border: 2px solid #b8860b;
  color: #b8860b;
  border-radius: 30px;
  transition: 0.3s;
}
.btn-outline-gold:hover {
  background: #b8860b;
  color: #fff;
}
.hover-card {
  transition: transform 0.3s, box-shadow 0.3s;
}
.hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.table-modern th,
.table-modern td {
  padding: 14px;
}
.hotel-title {
  letter-spacing: 1px;
}

.features-icon {
  font-size: 10px;

  div {
    width: 15%;
  }

  i {
    padding-bottom: 0.5rem;
    height: 30px;
  }
}

p {
  font-size: 14px !important;
}

.para {
  font-size: 14px;
  text-align: left;
}

.main-picture {
  /* background-color: red; */
  border-radius: 20px;
  object-fit: cover;
}

.choose-card {
  background-color: #f0f0f0;
}

.headers {
  color: #96a78d !important;
}

.fas,
i {
  color: #96a78d !important;
}

.room-features li {
  font-size: 12px;
  width: 115px;
  margin: 0 !important;
}

.main-feat {
  background-color: #f0f0f0;
}

.bg-cards {
  background-color: #f0f0f0;
  border-radius: 0 0 1.5rem 1.5rem;
}

.room-img {
  width: 100%;
  object-fit: cover;
  height: 300px;
}

.btn-primary {
  background-color: #21504b !important;
}

/* .room-card-modern{
    background-color: red;
  } */

h1,
h3,
h2 {
  color: #21504b !important;
}

.dark {
  background-color: #21504b;

  h2 {
    color: white !important;
  }
}

.luxury-heading {
  font-family: "Cormorant Garamond", serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px;
}

body {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 500 !important;
  color: #444;
}

.white {
  color: #e5a62e !important;
}

.facility-item i {
  width: 60px !important;
  height: 60px !important;
}

.facility-item h4 {
  font-size: 1rem;
}

.facility-item p {
  color: grey;
}

.footer i {
  background-color: transparent !important;
  color: #21504b !important;
}

.footer a {
  color: white !important;
}

.contact-lists i {
  margin-right: 0.5rem;
  color: #96a78d !important;
}

.pages a {
  font-size: 16px;
}

.facility-cont {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
}

.facility-item {
  width: 100%;
}

.fac {
  width: 30% !important;
}

.section-title {
  /* background-color: #F0F0F0; */
  padding: 2rem;
  border-radius: 2rem;

  h2 {
    font-weight: 400;
  }
}

.price-badge {
  background-color: rgb(3, 198, 3) !important;
}

.heros {
  background-image: url(../assets/gallery/g5.jpg);
  background-position: bottom;
}

/* .room-content{
    background-image: url(../assets/gallery/g7.jpg);
    width: 100%;
    height: 400px;
    margin-top: 50rem;
} */

@media only screen and (max-width: 750px) {
  .features-icon {
    div {
      width: 45%;
      margin-top: 1rem;
    }
  }

  .fac {
    width: 48% !important;
  }

  .facility-item {
    padding: 20px 10px;
  }

  .pages {
    margin: 2rem 0;
  }

  .head-banner {
    font-size: 2rem !important;
  }

  .about-content {
    margin-top: 2rem;

    h3 {
      font-weight: 600 !important;
    }
  }

  .wa {
    color: white !important;
  }

  .whatsapp-float {
    color: transparent !important;
    box-shadow: none;
  }
}

.nav-link {
  font-weight: 500 !important;
}

@media screen and (min-width: 800px) {
  .me-22 {
    width: 140px;
    height: 140px;
    object-fit: contain;
  }

  .nss {
    padding: 0 !important;
    height: 100px !important;
  }
}
