/* Sticky header with centered logo and menu below */
.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  background: transparent;
  box-shadow: none;
  transition: background-color 220ms ease, box-shadow 220ms ease;
  backdrop-filter: blur(4px);
}

.sticky-header .logo {
  max-width: 220px;
  height: auto;
}

/* Default nav link color when header is transparent (over videos) */
.sticky-header .navbar .nav-link,
.sticky-header .navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 200ms ease, background-color 200ms ease;
}

.sticky-header .navbar-nav .nav-link:hover {
  color: #7C6613 !important;
}

html {
  scroll-behavior: smooth;
}


/*.sticky-header {
  background-color: transparent !important;
  box-shadow: none !important;
  position: fixed;
  width: 100%;
  z-index: 1000;
}*/

.navbar .nav-link {
  color: #7C6613 !important; /* ✅ So links remain visible */
}

.navbar .nav-link:hover {
  color: #7C6613 !important; /* Optional: hover color */
}



/* Make the logo in video section responsive and centered */
.video-overlay .video-logo {
  max-width: 300px;
  width: 40%;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}

#home .video-overlay {
  background: rgba(0,0,0,0.3); /* optional subtle overlay */
}

#home .video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#home video.hero-video,
#home video.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer; /* ✅ Show it's clickable */
  transition: opacity 0.3s ease;
}

#home video.hero-video:hover,
#home video.bg-video:hover {
  opacity: 0.9; /* Subtle hover effect */
}

#home video.bg-video {
  z-index: 1;
}

#home .video-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Video click hint */
.video-click-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0px 27px;
  border-radius: 50px;
  text-align: center;
  pointer-events: none;
  animation: pulse 2s infinite;
}

.video-click-hint i {
  font-size: 29px;
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.video-click-hint p {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  padding-bottom: 8px;
}

@keyframes pulse {
  0%, 100% { 
    opacity: 1; 
    transform: translateX(-50%) scale(1);
  }
  50% { 
    opacity: 0.7; 
    transform: translateX(-50%) scale(1.05);
  }
}

/* Hide hint after first click */
.video-click-hint.hidden {
  display: none;
}

/* --- Rooms Highlight Section --- */
.rooms-highlight {
  background: #7a651b; /* same golden-brown tone as screenshot */
  color: #fff;
}

.room-card {
  display: flex;
  flex-direction: column;
  background: #7a651b;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.room-image {
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

.room-content p {
  margin: 0;
  font-size: 1rem;
}

.room-content .btn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.room-content .btn:hover {
  background: #fff;
  color: #7a651b;
}




/* Make home section full screen */
#home.home-section {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen height */
  overflow: hidden;
  padding: 0;
  margin: 0;
}

/* Container to hold both videos */
#home .video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Fullscreen videos */
#home video.hero-video,
#home video.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures it fills the section without distortion */
}

/* Put bg video behind */
#home video.bg-video {
  z-index: 1;
  filter: brightness(60%); /* optional darken background */
}

/* Overlay content */
#home .video-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,0.3); /* optional transparent overlay */
  color: white;
  padding: 2rem;
}


.gallery-item {
  width: 100%;
  height: 250px; /* 🔧 Adjust height as you like */
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ Keeps aspect ratio, fills box */
  transition: 0.3s ease;
}

.gallery-item:hover img {
  filter: brightness(60%);
  transform: scale(1.05);
}


/* Gallery grid styling */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Darken on hover */
.gallery-item:hover img {
  filter: brightness(60%);
  transform: scale(1.05);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  box-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox .close:hover {
  color: #f0ad4e;
}

#testimonials .carousel-item img {
  border: 3px solid #fff;
}

#testimonials p {
  font-style: italic;
}

#contact form .form-control {
  border-radius: 0.3rem;
}
.rounded-circle {
    display: none !important;
}

/* Ensure nav links transition color smoothly */
.sticky-header .navbar .nav-link {
  color: #7C6613 !important; /* ✅ So links remain visible */
  transition: color 200ms ease, background-color 200ms ease;
}

/* --- NEW: scrolled state: white background, link color #7A651B --- */
/* Scrolled state: white background and golden-brown link color */
.sticky-header.scrolled {
  background-color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.sticky-header.scrolled .navbar .nav-link,
.sticky-header.scrolled .navbar-nav .nav-link {
  color: #7A651B !important;
}

/* Ensure navbar toggler icon remains visible on white background */
.sticky-header.scrolled .navbar-toggler-icon {
  filter: none;
}

/* Fallback: when not using navbar-dark/dark utilities ensure links remain visible */
.navbar .nav-link {
  color: inherit;
}

/* optional: adjust logo or other header elements when scrolled */
.sticky-header.scrolled .logo {
  /* make sure logo remains visible on white background if needed */
  filter: none;
}

/* base */
body { font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif; margin:0; }
a { text-decoration: none; }

/* sticky merged header */
/*.sticky-header { position: sticky; top:0; z-index:1050; background: rgba(34,34,34,0.65); backdrop-filter: blur(4px); }*/
.sticky-header .logo { height: 60px; width: auto; }

/* home video fullscreen */
#home.home-section { height: 80vh; min-height: 520px; position: relative; overflow: hidden; }
#home .video-container { position: relative; width:100%; height:100%; }
#home video.hero-video, #home video.bg-video { position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; }
#home video.bg-video { z-index:1; filter:brightness(0.6); }
#home .video-overlay { position:relative; z-index:2; height:100%; display:flex; align-items:center; justify-content:center; pointer-events:none; }
.video-logo { max-width:360px; width:45%; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.5)); }

/* about images — fixed boxes */
.fixed-image-box { height: 220px; overflow:hidden; border-radius:8px; }
.fixed-image-box img { width:100%; height:100%; object-fit:cover; }

/* room highlight cards */
.room-card { background:#7a651b; color:#fff; border-radius:6px; overflow:hidden; box-shadow:0 6px 28px rgba(0,0,0,0.2); }
.room-image img { width:100%; height:320px; object-fit:cover; display:block; }
.room-content { background: transparent; }

/* gallery tiles */
.gallery-item { height:250px; overflow:hidden; border-radius:10px; position:relative; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .3s, filter .3s; }
.gallery-item:hover img { transform:scale(1.04); filter:brightness(.6); }

/* lightbox */
.lightbox { display:none; position:fixed; z-index:2000; inset:0; background:rgba(0,0,0,0.9); align-items:center; justify-content:center; }
.lightbox-content { max-width:90%; max-height:80vh; box-shadow:0 8px 40px rgba(0,0,0,0.6); }
.lightbox .close { position:absolute; top:18px; right:26px; color:#fff; font-size:36px; cursor:pointer; }

/* booking form card */
.booking-form { background:#fff; border-radius:8px; box-shadow:0 8px 30px rgba(0,0,0,0.06); }

/* Flatpickr custom styles */
.flatpickr-input {
  cursor: pointer !important;
  background-color: white !important;
  opacity: 1 !important;
}

.flatpickr-input[disabled],
.flatpickr-input[readonly] {
  cursor: pointer !important;
  background-color: white !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Calendar styling */
.flatpickr-calendar {
  z-index: 99999 !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2) !important;
}

.flatpickr-day {
  position: relative;
  cursor: pointer;
  padding-bottom: 4px; /* Extra space for price display */
}

.flatpickr-day.flatpickr-disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.flatpickr-day:hover:not(.flatpickr-disabled) {
  background: #e6f3ff !important;
  border-color: #3b82f6 !important;
}

/* Price tooltip styling - minimalist */
.flatpickr-price-tooltip {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  animation: fadeInPrice 0.2s ease;
}

@keyframes fadeInPrice {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Ensure calendar is always on top */
.flatpickr-calendar.open {
  z-index: 99999 !important;
}

/* Special pricing day styling - subtle color change only */
.flatpickr-day.special-price {
  font-weight: bold !important;
  color: #d4af37 !important;
}

/* Remove the star indicator */
.flatpickr-day.special-price::after {
  display: none;
}

/* Price breakdown styling */
#priceDisplay {
  animation: slideIn 0.3s ease;
  color: #A58C26 !important;
}

#priceDisplay * {
  color: #A58C26 !important;
}

#priceDisplay strong {
  color: #A58C26 !important;
  font-weight: 700;
}

#priceDisplay div {
  color: #A58C26 !important;
}

#priceDisplay span {
  color: #A58C26 !important;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}



