/* ================================
   NAVBAR BASE
================================ */
#mainNavbar {
  transition: all 0.3s ease;
  padding: 1rem 0;
  background: transparent;
  z-index: 999;
}

/* Brand */
#mainNavbar .navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 1px;
}

/* Nav links */
#mainNavbar .nav-link {
  margin-left: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

/* CTA button */
#mainNavbar .btn {
  border-radius: 30px;
  padding: 0.4rem 1.4rem;
}

/* ================================
   SCROLLED STATE
================================ */
#mainNavbar.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 0.6rem 0;
}

/* Text color change on scroll */
#mainNavbar.scrolled .navbar-brand,
#mainNavbar.scrolled .nav-link {
  color: #222 !important;
}

#mainNavbar.scrolled .nav-link:hover {
  color: #0d6efd !important;
}

/* CTA button on scroll */
#mainNavbar.scrolled .btn {
  color: #0d6efd;
  border-color: #0d6efd;
}

/* ================================
   MOBILE FIXES
================================ */
@media (max-width: 991px) {
  #mainNavbar {
    background: #ffffff;
  }

  #mainNavbar .navbar-brand,
  #mainNavbar .nav-link {
    color: #222 !important;
  }

  #mainNavbar .btn {
    color: #0d6efd;
    border-color: #0d6efd;
  }
}

/* ================================
   AMENITIES SECTION
================================ */

.amenities-section {
  padding: 80px 0;
  background: #ffffff;
}

.amenity-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 14px;
  background: #f9f9f9;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.amenity-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.amenity-card h6 {
  font-weight: 700;
  margin-bottom: 8px;
}

.amenity-card p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

/* ================================
   ABOUT SECTION
================================ */

.about-section {
  padding: 90px 0;
  background: #f9f9f9;
}

.about-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 15px;
}

.about-section p {
  color: #555;
  line-height: 1.7;
}

/* Bullet points */
.about-points {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.about-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #444;
}

.about-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0d6efd;
  font-weight: 700;
}

/* Image */
.about-image {
  height: 360px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Mobile tweaks */
@media (max-width: 767px) {
  .about-image {
    height: 260px;
    margin-top: 30px;
  }
}
/* ================================
   TESTIMONIALS SECTION
   (Currently commented in HTML)
================================ */

.testimonials-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
}

.testimonial-name {
  font-weight: 700;
  color: #222;
}
/* ================================
   GALLERY SECTION
================================ */

.gallery-section {
  padding: 80px 0;
  background: #ffffff;
}

.gallery-grid {
  margin-top: 40px;
}

/* Gallery item */
.gallery-item {
  width: 100%;
  height: 240px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Mobile tweak */
@media (max-width: 767px) {
  .gallery-item {
    height: 180px;
  }
}

/* ================================
   HERO SLIDER (CLEAN & STABLE)
================================ */

.hero-slider {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Swiper base */
.hero-slider .swiper {
  height: 100%;
}

.hero-slider .swiper-wrapper {
  height: 100%;
}

.hero-slider .swiper-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Only active slide visible */
.hero-slider .swiper-slide-active {
  opacity: 1;
  z-index: 2;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Content width lock (IMPORTANT) */
.hero-overlay .container {
  max-width: 900px;
}

/* Text */
.hero-overlay h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
}

.hero-overlay p {
  color: #ddd;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Pagination */
.swiper-pagination {
  bottom: 110px !important;
}


.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}
@media (max-width: 991px) {
  .navbar-toggler svg path {
    stroke: #000;
  }

  #mainNavbar {
    background: #fff;
  }
}

/* ================================
   BOOKING SECTION
================================ */

.booking-section {
  position: relative;
  margin-top: -80px; /* overlaps hero */
  z-index: 10;
}

.booking-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Labels */
.booking-card .form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

/* Inputs */
.booking-card .form-control,
.booking-card .form-select {
  height: 48px;
  border-radius: 8px;
}

/* CTA Button */
.booking-btn {
  height: 48px;
  font-weight: 600;
  border-radius: 8px;
}

/* Mobile spacing */
@media (max-width: 767px) {
  .booking-section {
    margin-top: -40px;
  }

  .booking-card {
    padding: 20px;
  }
}

/* ================================
   ROOMS SECTION
================================ */

.rooms-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
}

.section-header p {
  color: #666;
  margin-top: 10px;
}

/* Room card */
.room-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.room-card:hover {
  transform: translateY(-6px);
}

/* Image */
.room-image {
  height: 220px;
  background-size: cover;
  background-position: center;
}

/* Content */
.room-content {
  padding: 20px;
}

.room-content h5 {
  font-weight: 700;
  margin-bottom: 5px;
}

.room-price {
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 10px;
}

.room-desc {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

/* ================================
   FOOTER
================================ */

.footer {
  padding: 70px 0 30px;
  background: #111;
  color: #ccc;
}

.footer h5,
.footer h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Quick links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

/* ================================
   FOOTER SOCIAL ICONS
================================ */

.footer-socials {
  margin-top: 14px;
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  background: #0d6efd;
  color: #fff;
  transform: translateY(-2px);
}

/* ================================
   FOOTER BOTTOM
================================ */

.footer-bottom {
  margin-top: 40px;
  font-size: 0.85rem;
  color: #888;
}

/* Mobile spacing */
@media (max-width: 767px) {
  .footer-socials {
    margin-top: 18px;
  }
}

/* ================================
   CONTACT PAGE (LIGHT THEME)
================================ */

.contact-page {
  padding: 140px 0 80px;
  background: #f9f9f9;
}

.contact-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.contact-header p {
  color: #666;
  margin-top: 10px;
  margin-bottom: 50px;
}

/* Form */
.contact-form .form-label {
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form .form-control {
  height: 48px;
  border-radius: 8px;
}

.contact-form textarea.form-control {
  height: auto;
}

/* Map */
/* ================================
   MAP FIX (FULL HEIGHT)
================================ */

.map-box {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.map-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-page .row {
  align-items: stretch;
}

/* Mobile */
@media (max-width: 767px) {
  .contact-page {
    padding-top: 120px;
  }

  .map-box {
    min-height: 300px;
    margin-top: 20px;
  }
}
/* ================================
   ROOMS HERO
================================ */
.rooms-hero {
  padding: 160px 0 90px;
  background: #f5f5f5;
}

.rooms-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

.rooms-hero p {
  color: #666;
  margin-top: 12px;
  font-size: 1rem;
}

/* ================================
   ROOMS SECTION
================================ */
.rooms-section {
  padding: 90px 0;
  background: #ffffff;
}

/* Room card */
.room-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
}

/* Image */
.room-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Content */
.room-content {
  padding: 28px;
}

.room-content h5 {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.room-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Features list */
.room-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.room-features li {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}

.room-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #8b5e3c;
  font-size: 1.2rem;
  line-height: 1;
}

/* Footer */
.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.room-footer .price {
  font-weight: 700;
  color: #8b5e3c;
  font-size: 1rem;
}

/* ================================
   ANIMATION (FADE UP)
================================ */
.room-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.room-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .room-card img {
    height: 230px;
  }
}

@media (max-width: 767px) {
  .rooms-hero {
    padding: 120px 0 70px;
  }

  .room-content {
    padding: 22px;
  }

  .room-card img {
    height: 220px;
  }
}

/* ================================
   ABOUT PAGE
================================ */

.about-hero {
  padding: 160px 0 80px;
  background: #f5f5f5;
}

.about-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

.about-hero p {
  color: #666;
  margin-top: 10px;
}

/* About section */
.about-section {
  padding: 80px 0;
}

.about-section h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.about-section p {
  color: #555;
  line-height: 1.7;
}

/* Image */
.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Values */
.values-section {
  padding: 70px 0;
  background: #ffffff;
}

.value-box {
  padding: 30px;
}

.value-box h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.value-box p {
  color: #666;
}

/* Mobile */
@media (max-width: 767px) {
  .about-hero {
    padding-top: 120px;
  }
}
/* ================================
   GALLERY PAGE
================================ */

.gallery-hero {
  padding: 160px 0 80px;
  background: #f5f5f5;
}

.gallery-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

.gallery-hero p {
  color: #666;
  margin-top: 10px;
}

/* Grid */
.gallery-page {
  padding: 80px 0;
}

.gallery-item {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.04);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
}

/* Mobile */
@media (max-width: 767px) {
  .gallery-hero {
    padding-top: 120px;
  }

  .gallery-item {
    height: 160px;
  }
}

.amenity-card i {
  font-size: 46px;        /* was ~34px */
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  background: rgba(139, 94, 60, 0.1);
  color: #996d4b;
  display: inline-block;
  margin-bottom: 18px;
}
