/* Custom Variables */
:root {
  --primary-color: #ab8a62;
  --secondary-color: #8b7355;
  --accent-color: #d4a574;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --text-color: #333;
  --text-muted: #6c757d;
  --border-color: #e9ecef;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --heading-font: "Taviraj", serif;
  --body-font: "Mulish", sans-serif;
}

/* Global Styles */
body {
  font-family: var(--body-font);
  line-height: 1.6;
  font-weight: 400;
  color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 300;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Header Styles */
.header-main {
  position: absolute;
  width: 100%;
  box-shadow: none;
}

.header-main.scrolled {
  background: #fff;
  position: fixed;
}
.navbar {
  padding: 0.25rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.1rem 0;
  background-color: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px);
}

.header-main .logo-img {
  filter: none;
  transition: all 0.3s ease;
  width: 100px;
  margin-right: 12px;
}

.header-main.scrolled .logo-img {
  filter: invert(1);
  transition: all 0.3s ease;
  width: 70px;
}

.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

.brand-text {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
  margin: 0 0.5rem;
}

.header-main.scrolled .nav-link {
  color: var(--text-color);
  font-size: .8rem;
  transition: .2s all;
}

.header-main .nav-link {
  color: #fff;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.book-btn {
  background-color: var(--primary-color);
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.header-main.scrolled .book-btn {
    transition: all 0.3s ease;
    padding: 0.25rem 1.5rem;
}

/* Hero Section */
.hero-section .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  left: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  opacity: 0.3;
  transition: 0.2s all;
}

.hero-section .slick-arrow:hover {
  opacity: 1;
  transition: 0.2s all;
}

.slick-arrow.next-arrow {
  left: initial;
  right: 0;
}
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-slider .slick-slide {
  position: relative;
  height: 100vh;
}

.hero-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  background-color: var(--primary-color);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Slick Slider Customization */
.slick-dots {
  bottom: 30px;
  z-index: 3;
}

.slick-dots li button:before {
  color: white;
  font-size: 12px;
  opacity: 0.7;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--accent-color);
}

/* About Section */
.about-section {
  padding: 6rem 0;
}

.about-section img {
  transition: transform 0.3s ease;
  border-radius: 15px;
}

.about-section img:hover {
  transform: scale(1.05);
}

.feature-item {
  text-align: center;
  padding: 1rem;
}

.feature-item i {
  font-size: 2rem;
  display: block;
}

/* Gallery Section */
.gallery-section {
  padding: 6rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 80, 22, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
}

/* Amenities Section */
.amenities-section {
  padding: 6rem 0;
}

.amenity-item {
  padding: 2rem 1rem;
  transition: transform 0.3s ease;
}

.amenity-item:hover {
  transform: translateY(-5px);
}

.amenity-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.amenity-icon i {
  font-size: 2rem;
  color: white;
}

.amenity-item:hover .amenity-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.amenity-item h5 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

/* Reviews Section */
.reviews-section {
  padding: 6rem 0;
}

.review-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin: 0 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.review-stars {
  margin-bottom: 1.5rem;
}

.review-stars i {
  color: #ffc107;
  font-size: 1.2rem;
  margin: 0 2px;
}

.review-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-color);
  line-height: 1.7;
}

.review-author h6 {
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-color), #2a2a2a);
  color: var(--light-color);
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
}

.footer-brand-text {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.5rem;
}

.footer-title {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--light-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.contact-info p {
  margin-bottom: 0.75rem;
}

.contact-info i {
  color: var(--accent-color);
  width: 20px;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: end;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-section .row {
    flex-direction: column-reverse;
  }

  .about-section .col-lg-6:last-child {
    margin-bottom: 3rem;
  }

  .social-links {
    justify-content: center;
    margin-top: 1rem;
  }

  .navbar-nav {
    text-align: center;
    margin: 1rem 0;
  }

  .book-btn {
    width: 100%;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 70vh;
  }

  .hero-slide img {
    height: 70vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .amenity-item {
    padding: 1rem 0.5rem;
  }

  .review-card {
    padding: 1.5rem;
    margin: 0 10px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animations */
.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* stories start */
/* Avatars */
.story-avatar {
  width: 200px;
  height: auto;
  border-radius: 10px;
  padding: 0;
  border: 0;
  position: relative;
  overflow: hidden;
  outline: none;
}
.story-avatar::before {
  background: linear-gradient(0deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 78%) 100%);
  content: "";
  top: 0;
  width: 100%;
  position: absolute;
  height: 90px;
  left: 0;
}
.story-button-head {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  width: 100%;
  padding: 10px;
}

.story-button-head img {
  max-width: 80px;
}
.story-avatar .story-cover {
  width: 100%;
  height: 269px;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  border: 3px solid transparent;
  background: radial-gradient(#fff 62%, transparent 63%) padding-box,
    conic-gradient(#ff0066, #ffb300, #8a2be2, #ff0066) border-box;
  /* border-radius: 50%; */
  border: none;
}
.story-avatar.watched .story-cover {
  background: radial-gradient(#fff 62%, transparent 63%) padding-box,
    conic-gradient(#ccc, #ccc) border-box;
}

/* Modal */
.story-modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.story-content {
  position: relative;
  width: min(92vw, 420px);
  height: min(92vh, 740px);
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.close-btn {
  position: absolute;
  z-index: 60;
  top: 27px;
  right: 10px;
  font-size: 32px;
  background: transparent;
  color: #fff;
  border: 0;
  line-height: 1;
  cursor: pointer;
}

.story-controls {
  z-index: 99999;
  position: absolute;
  top: 23px;
  right: 36px;
}

button.pause-btn {
  background: none;
  border: none;
  color: #fff;
}

.pause-btn i {
  font-size: 28px;
}

.story-slide.slick-slide.slick-current.slick-active::after {
  content: "";
  background: linear-gradient(0deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 78%) 100%);
  width: 100%;
  top: 0;
  z-index: 1;
  left: 0;
  height: 90px;
  position: absolute;
}

/* Progress bars (pure HTML) */
.progress-area {
  position: absolute;
  z-index: 50;
  top: 8px;
  left: 8px;
  right: 8px; /* leave space for close */
  display: block;
}
.progress-wrapper {
  display: none; /* show only the active storyset's wrapper */
  gap: 6px;
}
.progress-wrapper.active {
  display: flex;
  margin: 10px;
}
.progress-segment {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  overflow: hidden;
}
.progress-bar {
  width: 0%;
  height: 100%;
  background: #fff;
  transform-origin: left center;
  transition: none;
}

/* Slides */
.story-set {
  display: none; /* only one set visible at a time */
}
.story-set.slick-initialized {
  display: block;
}
.story-slide {
  position: relative;
  width: 100%;
  height: min(92vh, 740px);
  color: #fff;
  user-select: none;
}

.story-slide::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 200px;
  background: linear-gradient(0deg, rgb(0 0 0 / 70%) 0%, rgb(0 0 0 / 0%) 90%);
  width: 100%;
  left: 0;
  z-index: 5;
}

.story-header {
  position: absolute;
  top: 36px;
  left: 16px;
  z-index: 40;
}

.story-header img {
  animation: none;
  max-width: 100px;
}

.story-footer {
  position: absolute;
  bottom: 24px;
  left: 16px;
  right: 16px;
  text-align: center;
  font-size: 18px;
  z-index: 40;
}
.story-body {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.1);
}

.story-set .slick-slide img {
  animation: none;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* Tap zones (left/right) */
.tap-zone {
  position: absolute;
  top: 0;
  bottom: 20%;
  width: 35%;
  z-index: 55;
}
.tap-left {
  left: 0;
}
.tap-right {
  right: 0;
  width: 65%;
} /* larger right zone like IG */

/* 3D effect on slide entrance */
.story-content.nav-next .slick-current .story-body,
.story-content.nav-prev .slick-current .story-body {
  animation-duration: 420ms;
  animation-fill-mode: both;
}
.story-content.nav-next .slick-current .story-body {
  animation-name: flipNext;
}
.story-content.nav-prev .slick-current .story-body {
  animation-name: flipPrev;
}
@keyframes flipNext {
  0% {
    transform: rotateY(-18deg) scale(0.98);
    opacity: 0.65;
  }
  100% {
    transform: rotateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes flipPrev {
  0% {
    transform: rotateY(18deg) scale(0.98);
    opacity: 0.65;
  }
  100% {
    transform: rotateY(0) scale(1);
    opacity: 1;
  }
}

/* Accessibility focus */
.story-avatar:focus-visible,
.close-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
/* larger right zone like IG */

.story-set .slick-slide {
  transform: scale(0.95) rotateY(0deg);
  transition: transform 0.5s ease;
}
.story-set .slick-current {
  transform: scale(1) rotateY(0deg);
}
.story-set .slick-prev,
.story-set .slick-next {
  z-index: 2000;
}

.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* stories start */

/* Grid Gallery */
/* Hide grid until we have at least one image laid out (prevents overlap) */

/* Masonry sizing: 3 columns by default */
.grid {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.grid.ready {
  opacity: 1;
}

.grid-sizer,
.grid-item {
  width: 33.333%; /* 3 columns */
}

.grid-item {
  float: left;
  margin: 0;
  padding: 5px;
  box-sizing: border-box;
}

.grid-item img {
  display: block;
  max-width: 100%;
  border-radius: 8px;
}
/* Grid Gallery */
