/* NAVBAR---------START */

/* Navbar background and padding */
.navbar {
  background-color: #ffffff; /* light background */
  padding: 0.8rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  padding-left: 10rem;
  padding-right: 10rem;
}

/* Logo image */
.navbar-brand img {
  max-height: 60px;
  width: auto;
}

/* Navbar links */
.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 2rem;
}

/* Hover and active states */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
  color: #d4a017; /* gold-ish hover color */
  background-color: rgba(212, 160, 23, 0.05);
  border-radius: 5px;
}

/* Dropdown menu */
.dropdown-menu {
  border-radius: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: none;
}

/* Dropdown items */
.dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f7f7f7;
  color: #d4a017;
}

/* Toggler icon (hamburger) */
.navbar-toggler {
  border: none;
  outline: none;
  color: #e9dfc7;
}

/* Butoni BOOK NOW ne nav */
.book-now-btn {
  background-color: transparent;
  color: #d4a017;
  border: 2px solid #d4a017;
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect with shine */
.book-now-btn:hover {
  background-color: #d4a017;
  color: white;
  box-shadow: 0 0 10px rgba(212, 160, 23, 0.4);
}

/* -----------NAVBAR END--------- */

/* 
---------Home start--------- */
/* =========================
   HERO CAROUSEL STYLING
========================= */

.carousel,
.carousel-inner,
.carousel-item,
.hero-slide {
  height: 70vh;
  min-height: 600px;
  position: relative;
}

/* Image Styling */
.hero-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(0.8); /* slightly dim image for contrast */
}

/* Overlay effect */
.hero-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.5)
  );
  z-index: 1;
}

/* Caption Styling */
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 1rem 2rem;
}

.carousel-caption h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.carousel-caption p {
  font-size: 1.25rem;
  margin-top: 0.5rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.carousel-caption .btn {
  background-color: #d4a017;
  border: none;
  color: white;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  margin-top: 1.2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.carousel-caption .btn:hover {
  background-color: #e0b026;
  box-shadow: 0 0 10px rgba(212, 160, 23, 0.5);
}

html {
  scroll-behavior: smooth;
}

/* about index page */
.karte1 {
  width: 440px;
  border-radius: 16px;
  overflow: hidden;
}

.room-card {
  height: 100%;
  border: none;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s;
}

.room-card:hover {
  transform: translateY(-5px);
}

.room-img-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.room-price {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: white;
  padding: 4px 10px;
  font-size: 0.9rem;
  border-radius: 4px;
  z-index: 2;
}

.room-icons {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: white;
  font-size: 1.2rem;
}

#about {
  color: fw-bold;
}

.service-card {
  background-color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  background-color: #f5d19c;
  color: #fff;
}

.service-card:hover h6,
.service-card:hover p,
.service-card:hover i {
  color: #fff !important;
}

.gallery-card {
  height: 200px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-card:hover {
  transform: scale(1.03);
}

.gallery-overlay {
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
}

.gallery-card:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.object-fit-cover {
  object-fit: cover;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}
.testimonial-card::before {
  content: "“";
  font-size: 3rem;
  color: #f0f0f0;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}
.testimonial-card::after {
  content: "”";
  font-size: 3rem;
  color: #f0f0f0;
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
}
.star {
  color: #ffc107;
}
.profile-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto -40px;
  z-index: 2;
  position: relative;
  border: 4px solid #fff;
}

.mobile-menu {
  right: 0;
  top: 100%;
  width: 250px;
  z-index: 1055;
  transition: all 0.3s ease;
  border-radius: 0 0 6px 6px;
}

.mobile-menu a {
  color: #000 !important;
  text-decoration: none;
}

.mobile-menu a:hover {
  color: #5c3e14;
}

.bi {
  color: #eac489;
}
.ratio-box {
  position: relative;
  width: 100%;
  padding-top: 66.66%; /* 4:3 aspect ratio (height = 3/4 * width) */
  overflow: hidden;
  border-radius: 10px; /* optional */
}

.ratio-box img.fixed-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* optional dark overlay */
  transition: background 0.3s ease;
}

.overlay1:hover {
  background: rgba(0, 0, 0, 0.5);
}

.service-card {
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.owl1 .image-container1 {
  height: 250px; /* Adjust to fit your layout */
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.owl1 .image-container1 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.owl1 .image-container1:hover img {
  transform: scale(1.05);
}

.owl1 .item {
  padding: 0 10px; /* spacing between images */
}

/* =========================
   RESPONSIVE CAROUSEL
========================= */
/* STYLING FOR MOBILE */
@media (max-width: 991.98px) {
  /* Remove extra side padding on mobile */
  .navbar {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Align brand and toggler to sides */
  .navbar-brand {
    margin-left: 0;
  }

  .navbar-toggler {
    margin-left: auto;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
  }

  /* Keep the logo a bit smaller for mobile */
  .navbar-brand img {
    max-height: 50px;
  }

  /* Collapse menu styling (optional for spacing) */
  .navbar-nav {
    margin-top: 0.5rem;
  }

  .navbar-nav .nav-link {
    text-align: left;
    padding-left: 1rem;
  }
  .book-now-btn {
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.6rem 1rem;
    box-shadow: none;
  }
}

@media (max-width: 768px) {
  .carousel,
  .carousel-inner,
  .carousel-item,
  .hero-slide {
    height: 80vh;
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .carousel-caption {
    position: absolute;
    top: 30%;
    left: 45%;
    z-index: 2;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 1rem 2rem;
  }

  .carousel-caption h1 {
    font-size: 1.6rem;
  }

  .carousel-caption p {
    display: none;
  }
}
@media (max-width: 768px) {
  .carousel-caption {
    bottom: 20%;
    transform: translate(-50%, 0); /* keep text higher */
    padding: 1rem 1rem;
    text-align: center;
    justify-content: center;
  }

  .carousel-caption h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    justify-content: center;
    text-align: center;
  }

  .carousel-caption p {
    font-size: 1rem;
    justify-content: center;
    text-align: center;
  }

  .carousel-caption .btn {
    font-size: 0.9rem;
    padding: 0.2rem 0.2rem;
    margin-top: 0.5rem;
  }
}
