/*  Booking  start*/
.booking-section {
  background: #0f172a;
  padding: 30px;
  max-width: 900px;
  margin: auto;
  border-radius: 12px;
}
*{
  margin-top: 10px;
}
html, body {
  overflow-x: hidden;
  width: 100%;
}


.booking-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #fff;
  font-size: 14px;
  margin-bottom: 6px;
}

.booking-form input,
.booking-form select {
  padding: 10px;
  border-radius: 6px;
  border: none;
  outline: none;
}

.booking-form button {
  background: #f59e0b;
  color: #000;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.booking-form button:hover {
  background: #fbbf24;
}

/*  Booking  end*/
.sub-heading{
    color:#f59e0b
}

/*index.html start  */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}
a{text-decoration:none; color:inherit}

/* ===== TOP BAR ===== */
.top-bar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 30px;
  color:#111;
  background-color:#fff;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:22px;
  font-weight:bold;
}
.top-contact{
  display:flex;
  gap:20px;
  font-size:14px;
}


/* ===== Navbar Start ===== */
/* HEADER */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,.4);
  z-index: 9999;
}

/* NAV CONTAINER */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  color: #fff;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 45px;
}
.logo span {
  font-size: 18px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}
.call-btn {
  background: #f5b400;
  color: #000;
  padding: 6px 12px;
  border-radius: 5px;
  font-weight: bold;
}

/* MENU BUTTON */
.menu-btn {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* CLOSE BUTTON */
.close-btn {
  display: none;
}

/* BODY OFFSET */
body {
  padding-top: 70px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: rgba(0,0,0,0.3);
    flex-direction: column;
    padding: 30px;
    transition: 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  .close-btn {
    display: block;
    align-self: flex-end;
    font-size: 22px;
    margin-bottom: 20px;
    cursor: pointer;
  }
}

/* ===== Navbar end ===== */
/* ===== CAROUSEL ===== */
.hero-carousel {
  width: 100%;
  height: 100vh;
  position: relative;
}

.hotelSwiper,
.swiper-slide {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: absolute;
  z-index: 2;
  bottom: 20%;
  left: 10%;
  max-width: 600px;
  color: #fff;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.swiper-slide-active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-content h1,
.hero-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #cfa45d;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
}

/* ===== BOOKING FORM ===== */
.booking{
  background:#f3f4f6;
  padding:30px;
}
.booking-form{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:15px;
}
.booking-form input,
.booking-form select{
  padding:12px;
}
.booking-form button{
  background:#2563eb;
  color:#fff;
  border:none;
}

/* ===== ABOUT ===== */
.section{
  padding:80px 40px;
}
.about{
  display:flex;
  gap:40px;
}
.about img{width:45%; border-radius:12px}

/* ===== ROOMS ===== */
.rooms-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}
.room-card{
  box-shadow:0 10px 30px rgba(0,0,0,.1);
}
.room-card img{width:100%}
.room-body{padding:15px}

/* ===== VIDEO ===== */
.video-section{
  width:100%;
  height:400px;
  background:url('https://img.youtube.com/vi/dQw4w9WgXcQ/maxresdefault.jpg') center/cover;
  position:relative;
}
.play-btn{
  position:absolute;
  inset:0;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:60px;
  color:#fff;
}

/* ===== FACILITIES ===== */
.facilities{
  background:#f9fafb;
}
.fac-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  text-align:center;
}

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.reviews-section h2 {
  text-align: center;
  color: #003366;
  margin-bottom: 8px;
}

.reviews-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

.reviews-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.reviews-scroll::-webkit-scrollbar {
  height: 6px;
}

.reviews-scroll::-webkit-scrollbar-thumb {
  background: #003366;
  border-radius: 10px;
}

.review-card {
  min-width: 280px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  scroll-snap-align: start;
}

.stars {
  color: #f4b400;
  font-size: 18px;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 12px;
}

.review-card h4 {
  color: #003366;
  font-size: 14px;
}

/* ===== NEWS ===== */
.news-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}
.news-card img{width:100%}

/* ===== FOOTER ===== */
footer{
  background:#111;
  color:#fff;
  padding:40px;
  text-align:center;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .about{flex-direction:column}
  .rooms-grid,
  .news-grid,
  .fac-grid{grid-template-columns:1fr}
  .booking-form{grid-template-columns:1fr}
}

/*gallery start  */
.gallery-item {
  overflow: hidden;
  border-radius: 14px;
}

.gallery-item img {
  transition: transform 0.4s ease;
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.gallery-item img:hover {
  transform: scale(1.08);
}
footer a {
  text-decoration: none;
}
/* gallery end */

/*Mobile header start  */
@media (max-width: 576px) {

  header,
  .site-header,
  .gallery-header {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    overflow-x: hidden;
  }

}
/* =========================
   MOBILE HEADER FIX
========================= */
@media (max-width: 768px) {

  /* GLOBAL SAFETY */
  html, body {
    overflow-x: hidden;
  }

  * {
    box-sizing: border-box;
    max-width: 100%;
  }

  /* ---------- TOP BAR ---------- */
  .top-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    gap: 8px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
  }

  .logo img {
    height: 45px;
  }

  .top-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
  }

  .top-contact a {
    text-decoration: none;
    color: inherit;
  }

  /* ---------- NAVBAR ---------- */
  .navbar {
    width: 100%;
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
  }

  /* MENU BUTTON */
  .menu-btn {
    font-size: 26px;
    cursor: pointer;
    display: block;
  }

  /* HIDE SOCIAL ICONS ON MOBILE */
  .social-icons {
    display: none;
  }

  /* NAV LINKS PANEL */
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100vh;
    background: #6553ce;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    transition: 0.4s ease;
    z-index: 9999;
  }

  .nav-links a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
  }

  /* SHOW MENU */
  .nav-links.active {
    left: 0;
  }

  /* CLOSE BUTTON */
  .close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
  }

}
@media (max-width: 768px) {

  .navbar {
      position: sticky;
     top: 0;
     z-index: 9999;
    width: 100%;
    z-index: 100;
    background: #fff; /* important */
  }

  /* Push content down so it doesn't hide behind navbar */
  body {
    padding-top: 65px;
  }

}


/*Mobile header end  */