/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

body {
  margin: 0;
  font-family: 'Roboto', serif;
  overflow-x: hidden;
}

#heading{
  margin-top: 70px;
  margin-left:30px;
  margin-right: 30px;
}




.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  color: #ad6d4a;
  font-size: 1.4rem;
  font-weight: 700;
}




/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* HEADER */
.bw-header {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* NAVBAR */
.bw-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2000;
  transition: background 0.4s ease, padding 0.3s ease;
  background: transparent;
}

.bw-navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  padding: 15px 30px;
}

.bw-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: bold;
}

.bw-logo img {
  height: 40px;
}

.bw-nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.bw-nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* HAMBURGER */
.bw-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  position: relative;
  z-index: 2100; /* ensure it's above overlay */
}

.bw-hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
}

/* SIDEBAR */
.bw-sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #c8ad6a;
  padding: 60px 20px;
  transition: right 0.3s ease;
  z-index: 2200;
}

.bw-sidebar.active { right: 0; }

.bw-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.bw-sidebar ul {
  list-style: none;
  margin-top: 40px;
}

.bw-sidebar ul li {
  margin-bottom: 20px;
}

.bw-sidebar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

/* HERO */
.bw-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.bw-slides {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
}

.bw-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  animation: bwZoom 12s ease-in-out infinite;
}

.bw-slide.active {
  opacity: 1;
  z-index: 1;
}

@keyframes bwZoom {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Overlay */
.bw-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 2;
}

/* Text */
.bw-hero-text {
  position: relative;
  z-index: 3;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.bw-hero-text h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.bw-hero-text p {
  font-size: 20px;
}

/* RESPONSIVE */
.bw-slides.portrait { display: none; }

@media (max-width: 768px) {
  .bw-nav-links { display: none; }
  .bw-hamburger { display: flex; } /* force visible */
  .bw-slides.landscape { display: none; }
  .bw-slides.portrait { display: block; }
}







/* rooms preview section*/
/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #663433;
  margin: 0;
}

/* Rooms Section */
.rooms {
  padding: 5rem 2rem;
  background: #f9f9f9;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.room-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.room-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room-info {
  padding: 1.2rem;
}

.room-info h3 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  color: #ad6d4a;
}

.room-info p {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
}

/* Explore Button */
.explore-btn-wrapper {
  text-align: center;
}

.explore-btn {
  position: relative;
  display: inline-block;
  padding: 0.9rem 2rem;
  border: 2px solid #c8ad6a;
  color: #663433;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1rem;
  overflow: hidden;
  transition: color 0.3s ease;
}

.explore-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: #c8ad6a;
  transition: left 0.4s ease;
  z-index: -1;
}

.explore-btn:hover::before {
  left: 0;
}

.explore-btn:hover {
  color: #fff;
}

/* Fade-up animation (already used globally) */
.rooms.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.rooms.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}



/*Park view section*/
/* Park Section */
.park {
  padding: 5rem 2rem;
  background: #fff;
}

.park-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.park-image {
  flex: 1 1 45%;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.park-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.park-image:hover img {
  transform: scale(1.1);
}

.park-content {
  flex: 1 1 45%;
}

.park-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #663433;
}

.park-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 2rem;
}

/* Reuse explore button styles */
.park .explore-btn {
  border: 2px solid #c8ad6a;
  color: #663433;
}

.park .explore-btn::before {
  background: #c8ad6a;
}

/* Fade-up effect */
.park.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.park.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   Services Section
================================= */
.services-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 4rem 5%;
  text-align: center;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 3px solid #eee;
}

.service-card h3 {
  font-family: 'Roboto', serif;
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem;
  color: #222;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  padding: 0 1.2rem;
}

.service-link {
  display: inline-block;
  margin: 1.2rem 0 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #663433;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #b68c4a; /* Example hotel theme color */
}


/* News and updates section*/
/* News Section */
.news {
  width: 100%;
  padding: 5rem 0;
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.news-title {
  text-align: center;
  font-size: 2.5rem;
  color: #663433;
  margin-bottom: 2rem;
  font-family: 'Roboto', serif;
}

.news-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.news-slide {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 500px;
  opacity: 0;
  transition: all 1s ease;
}

.news-slide.active {
  left: 0;
  opacity: 1;
  z-index: 1;
}

.news-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-caption {
  position: absolute;
  bottom: 40px;
  left: 50px;
  background: rgba(102, 52, 51, 0.7);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  max-width: 400px;
}

.news-caption h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.news-caption p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Arrows */
.news-prev, .news-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(200, 173, 106, 0.9); /* gold tone */
  color: #fff;
  border: none;
  padding: 1rem;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: background 0.3s ease;
  z-index: 2;
}

.news-prev:hover, .news-next:hover {
  background: #663433;
}

.news-prev {
  left: 20px;
}

.news-next {
  right: 20px;
}

/* Fade-up */
.news.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.news.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .news-slide {
    height: 300px;
  }

  .news-caption {
    bottom: 20px;
    left: 20px;
    max-width: 250px;
    padding: 0.7rem 1rem;
  }
}

.news-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  height: 500px; /* ✅ ensures images show */
}


/* Location section - styles (add into your main stylesheet) */
.location-section {
  padding: 64px 5%;
  background: #ffffff;
  color: #663433;
}

.location-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.location-title {
  font-family: 'Roboto', serif;
  font-size: 36px;
  text-align: center;
  color: #663433;
  margin-bottom: 8px;
}

.location-lead {
  text-align: center;
  color: #4a5560;
  margin-bottom: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid */
.location-grid {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Left column (nearby list) */
.nearby-column {
  flex: 1 1 45%;
  min-width: 280px;
}

.nearby-tab {
  display: inline-block;
  padding: 14px 26px;
  border: 3px solid #663433;
  color: #663433;
  font-weight: 600;
  font-size: 20px;
  border-radius: 4px;
  margin-bottom: 24px;
}

/* Nearby list */
.nearby-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nearby-list li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #e8ebee;
}

.nearby-list li .pin {
  width: 22px;
  height: 22px;
  color: #663433;
  flex-shrink: 0;
}

.nearby-list .place {
  font-weight: 600;
  color: #663433;
}

.nearby-list .distance {
  color: #4a5560;
  font-size: 0.95rem;
  white-space: nowrap;
  margin-left: 8px;
}

/* Right column (map) */
.map-column {
  flex: 1 1 50%;
  min-width: 300px;
}

.map-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.map-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-actions {
  margin-top: 10px;
}

.map-directions {
  display: inline-block;
  padding: 8px 16px;
  background: #663433; /* hotel theme color */
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}



.map-directions:hover {
  background: #485968;
  color: #fff;
}

/* Responsive */
@media (max-width: 980px) {
  .map-frame { height: 420px; }
}

@media (max-width: 720px) {
  .location-grid { flex-direction: column-reverse; gap: 20px; }
  .nearby-column, .map-column { flex: 1 1 100%; }
  .map-frame { height: 320px; }
  .map-actions { justify-content: center; }
  .nearby-tab { font-size: 18px; padding: 12px 20px; }
  .location-title { font-size: 28px; }
}







/* half text section*/
/* Wellness Section */
.wellness {
  padding: 5rem 2rem;
  background: #f9f9f9;
}

.wellness-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Image Side */
.wellness-image {
  flex: 1 1 50%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  height: 400px; /* ✅ give container height */
}

@media (max-width: 768px) {
  .wellness-image {
    height: 500px; /* smaller for mobile */
  }
}

.wellness-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-direction: row; /* ✅ ensures text left, image right */
}

@media (max-width: 900px) {
  .wellness-container {
    flex-direction: column; /* ✅ stacks vertically on mobile */
  }
}



.image-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-slider img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}


.image-slider img.active {
  opacity: 1;
}

.image-overlay-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(102, 52, 51, 0.7); /* brand color w/ transparency */
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 8px;
}

.image-overlay-text h3 {
  margin: 0;
  font-size: 1.2rem;
}

/* Text Side */
.wellness-content {
  flex: 1 1 45%;
}

.wellness-content h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  color: #663433;
}

.wellness-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 2rem;
}

/* Button reuse */
.wellness .explore-btn {
  border: 2px solid #c8ad6a;
  color: #663433;
}

.wellness .explore-btn::before {
  background: #c8ad6a;
}

/* Fade-up */
.wellness.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.wellness.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .wellness-container {
    flex-direction: column;
  }

  .wellness-image, .wellness-content {
    flex: 1 1 100%;
  }

  .image-overlay-text {
    bottom: 15px;
    left: 15px;
    font-size: 1rem;
  }
}






/* footer with quick links*/
/* Footer Section */
/* Footer Section */
.footer {
  background: #191818;
  color: #fff;
  padding: 4rem 2rem;
  font-family: 'Roboto', serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo-img {
  width: 150px;
  margin-bottom: 1rem;
}

.footer-logo p {
  font-size: 1rem;
  line-height: 1.6;
  color: #f1f1f1;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #c8ad6a;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #c8ad6a;
}

.footer-contact p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
}

/* Fade-up */
.footer.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.footer.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ✅ Responsive Fix */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links, 
  .footer-contact {
    width: 100%;
    margin-top: 2rem;
  }

  .footer-links ul li {
    margin: 0.5rem 0;
  }
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  font-size: 1.5rem;
  color: #800000; /* maroon from your logo */
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #c8ad6a; /* gold from your logo */
  transform: scale(1.2);
}








