@import url("https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700,700i,900,900i|Poppins:300,400,500,600,700,800,900");

:root {
  --primary-font: "Poppins", sans-serif;
  --heading-font: "Playfair Display", serif;
  --primary-color: #c3a165; /* Gold/Bronze */
  --secondary-color: #cfa97a; /* Lighter Gold */
  --text-dark: #141414;
  --text-light: #777777;
  --bg-light: #f9f9f9;
  --white: #ffffff;
}

body {
  font-family: var(--primary-font);
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--text-dark);
  font-weight: 700;
  margin: 0 0 15px;
}

a {
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography Utilities */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title span {
  display: block;
  font-size: 14px;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.section-title h2 {
  font-size: 40px;
  line-height: 1.2;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  padding: 15px 35px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid var(--primary-color) !important;
  border-radius: 0;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--text-dark);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  color: var(--white) !important;
  background-color: var(--primary-color) !important;
  border-color: var(--text-dark) !important;
  box-shadow: none !important;
}

.btn-primary:hover::before {
  width: 100%;
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--white);
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--white);
  transition: all 0.4s ease;
}
.btn-outline:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

/* Form Styles */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(195, 161, 101, 0.25);
}

/* Nav Tabs & Tariff Cards */
.tariff-tabs {
  border-bottom: 2px solid #eeeeee;
  margin-bottom: 40px;
  justify-content: center;
}
.tariff-tabs .nav-link {
  color: var(--text-dark);
  font-weight: 700;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 15px 30px;
  font-family: var(--heading-font);
  font-size: 22px;
  background: transparent;
  transition: all 0.3s ease;
}
.tariff-tabs .nav-link:hover, .tariff-tabs .nav-link.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}
.room-tariff-card {
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}
.room-tariff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
  border-color: var(--primary-color);
}
.room-number-badge {
  background-color: var(--primary-color);
  color: var(--white);
  border: 5px solid var(--white);
}

/* Header & Nav */
.header-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 20px 0;
  transition: all 0.4s ease;
}
.navbar-brand {
  padding: 0;
}
.navbar-brand img {
  height: 105px;
  width: auto;
  transition: all 0.4s ease;
}

@media (max-width: 991px) {
  .navbar-brand img {
    height: 100px;
  }
}
.navbar-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  padding: 10px 20px !important;
  letter-spacing: 1px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}
.header-contact {
  display: flex;
  align-items: center;
}
.header-contact a {
  color: var(--white);
  font-weight: 600;
  margin-left: 20px;
}
.header-contact a i {
  color: var(--primary-color);
  margin-right: 5px;
}

/* Hero Section */
.hero-slider-item {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slider-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65); /* Stronger dark overlay */
}
.carousel-caption {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0;
}
.hero-content {
  text-align: center;
  color: var(--white);
  padding: 0 15px;
}
.hero-content span {
  display: block;
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-content h1 {
  font-size: 70px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}
.carousel-indicators {
  z-index: 15;
  margin-bottom: 30px;
}
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid transparent;
  margin: 0 5px;
  transition: all 0.3s ease;
}
.carousel-indicators .active {
  background-color: transparent;
  border-color: var(--primary-color);
}
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  z-index: 15;
}

/* Animations for Slide */
.animate-slide-up {
  opacity: 0;
  transform: translateY(30px);
}
.carousel-item.active .animate-slide-up {
  animation: slideUp 0.8s forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section */
.about-section {
  padding: 100px 0;
}
.about-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.about-content p {
  margin-bottom: 30px;
}
.about-img {
  position: relative;
}
.about-img img {
  border-radius: 5px;
}
.about-img-2 {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 50%;
  border: 10px solid var(--white);
  border-radius: 5px;
}

/* Rooms Section */
.rooms-section {
  background-color: var(--bg-light);
  padding: 100px 0;
}
.single-room {
  background: var(--white);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.single-room:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}
.room-img {
  position: relative;
  overflow: hidden;
}
.room-img img {
  width: 100%;
  transition: transform 0.5s ease;
}
.single-room:hover .room-img img {
  transform: scale(1.1);
}
.room-price {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 15px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 3px;
}
.room-content {
  padding: 30px;
}
.room-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.room-content h3 a {
  color: var(--text-dark);
}
.room-content h3 a:hover {
  color: var(--primary-color);
}
.room-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
}
.room-features li {
  font-size: 14px;
  color: var(--text-light);
}
.room-features li i {
  color: var(--primary-color);
  margin-right: 5px;
}
.read-more {
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}
.read-more i {
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}
.read-more:hover i {
  margin-left: 10px;
  color: var(--primary-color);
}

/* Features/Services */
.features-section {
  padding: 100px 0;
}
.single-feature {
  padding: 40px 30px;
  border: 1px solid #eeeeee;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}
.single-feature:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(195, 161, 101, 0.1);
}
.feature-icon {
  font-size: 50px;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: inline-block;
}
.single-feature h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
  background-color: var(--text-dark);
  padding: 80px 0;
  text-align: center;
}
.cta-content h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 20px;
}
.cta-content p {
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Footer */
.footer-area {
  background-color: #111111;
  color: #aaaaaa;
  padding: 80px 0 0;
}
.footer-widget h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}
.footer-widget h3::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}
.footer-contact li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}
.footer-contact li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary-color);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #aaaaaa;
  position: relative;
  padding-left: 15px;
}
.footer-links a::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-family: monospace;
}
.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 20px;
}
.footer-bottom {
  border-top: 1px solid #333333;
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 14px;
}

/* Page Header */
.page-header {
  position: relative;
  height: 50vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.page-header-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  padding: 0 15px;
}
.page-header-content h1 {
  font-size: 50px;
  color: var(--white);
  margin-bottom: 10px;
}
.page-header-content span {
  display: block;
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.custom-breadcrumb {
  margin-top: 15px;
}
.custom-breadcrumb .breadcrumb-item a {
  color: var(--white);
}
.custom-breadcrumb .breadcrumb-item a:hover {
  color: var(--primary-color);
}
.custom-breadcrumb .breadcrumb-item.active {
  color: var(--primary-color);
}
.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}

.huge-breadcrumb {
  margin-bottom: 0;
}
.huge-breadcrumb a {
  color: var(--primary-color);
  transition: all 0.3s ease;
  text-decoration: none;
}
.huge-breadcrumb a:hover {
  color: #ffffff;
}
.huge-breadcrumb .separator {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 15px;
}
.huge-breadcrumb .current {
  color: #ffffff;
}

.page-header .animate-slide-up {
  animation: slideUp 0.8s forwards;
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0;
  background-color: var(--white);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(195, 161, 101, 0.8); /* Primary color slightly transparent */
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-overlay i {
  color: var(--white);
  font-size: 30px;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
  visibility: visible;
}
.gallery-item:hover .gallery-overlay i {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 50px;
  }
  .booking-form-area {
    margin-top: 0;
    padding-top: 50px;
  }
  .booking-form .btn {
    margin-top: 15px;
  }
  .navbar-collapse {
    background: var(--text-dark);
    padding: 20px;
    margin-top: 15px;
  }
  .page-header-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 36px;
  }
  .about-img-2 {
    display: none; /* Simplify on mobile */
  }
  .section-title h2 {
    font-size: 30px;
  }
  .page-header-content h1 {
    font-size: 32px;
  }
}

/* WhatsApp Floating 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: 35px;
  box-shadow: 2px 5px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  text-decoration: none;
  color: #FFF;
  transform: scale(1.1);
  background-color: #1ebe57;
}
.whatsapp-float i {
  line-height: normal;
}

@media (max-width: 767px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
  }
}
