body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

.site-header {
  background-color: #1d2938;
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.logo-img {
  height: 70px;
  width: auto;
  border-radius: 8px;
}

.hotel-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.site-header p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #ffd700;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.slideshow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.overlay-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  background: rgba(0, 0, 0, 0.5);
}

.overlay-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.overlay-text p {
  font-size: 1.2rem;
  max-width: 600px;
}

/* Availability Section */
.availability-section {
  padding: 3rem 1rem;
  background-color: #fff;
  text-align: center;
}

.availability-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1d2938;
}

.search-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.search-form label {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  font-size: 0.95rem;
  min-width: 140px;
}

.search-form input,
.search-form select {
  padding: 0.6rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-top: 0.3rem;
  font-size: 1rem;
}

.search-form button {
  padding: 0.7rem 1.5rem;
  background-color: #2e3b4e;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-form button:hover {
  background-color: #1d2938;
}

/* Experience Section */
.experience-section {
  padding: 3rem 1rem;
  max-width: 800px;
  margin: auto;
  background-color: #fafafa;
  font-size: 1rem;
  line-height: 1.7;
}

.experience-section h2,
.experience-section h3 {
  color: #1d2938;
  margin-bottom: 1rem;
}

.experience-section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.experience-section li {
  padding: 0.5rem 0rem;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  
}

.experience-section li::before {
  content: "✔";
  color: #2e3b4e;
  font-weight: bold;
}

.rooms, .contact {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

.room {
  background-color: #f1f1f1;
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.room:hover {
  background-color: #e0e0e0;
}

footer {
  background-color: #2e3b4e;
  color: white;
  text-align: center;
  padding: 1rem;
}
.booking-form {
  padding: 2rem;
  max-width: 600px;
  margin: auto;
}

.booking-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-form label {
  font-weight: bold;
  display: flex;
  flex-direction: column;
}

.booking-form input,
.booking-form select {
  padding: 0.5rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.booking-form button {
  padding: 0.7rem 1.5rem;
  background-color: #2e3b4e;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.booking-form button:hover {
  background-color: #1d2938;
}
.offers {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.offer-card {
  background-color: #f7f7f7;
  border-left: 5px solid #2e3b4e;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  text-align: left;
}

.offer-card h3 {
  margin-top: 0;
  color: #2e3b4e;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.logo-img {
  height: 85px;   /* You can increase/decrease this */
  width: auto;
}
.hotel-name {
  font-size: 3.5rem; 
  font-weight: bold;
  color: #ffffff; 
  font-family: 'Bradley Hand ITC', serif; 
  margin: 0;
  text-align: center;
}
.room-detail {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.room-detail ul {
  list-style: none;
  padding-left: 0;
}

.room-detail ul li {
  margin-bottom: 0.5rem;
}
.room-hero {
  display: flex;
text-align: center;
  flex-direction: column;
  gap: 1rem;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.book-now-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
/* Make the slider full width */
.slider {
  width: 100vw;         /* Full viewport width */
  height: auto;
  margin: 0;
  padding: 0;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.book-now-link {
  display: inline-block;
  background-color: #ffd700;
  color: #1d2938 !important;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  margin-top: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: background 0.2s, color 0.2s;
}
.book-now-link:hover,
.book-now-link:focus {
  background-color: #ffc200;
  color: #222 !important;
  text-decoration: none;
}

.back-home-link {
  color: #ffd700 !important;
  font-weight: bold !important;
  text-decoration: underline !important;
  background: transparent !important;
}
.back-home-link:visited,
.back-home-link:active,
.back-home-link:hover,
.back-home-link:focus {
  color: #ffd700 !important;
}
/* --- other styles above --- */
@media (max-width: 600px) {
    .experience-section li {
    font-size: 1rem !important;
    
  }
}
@media (max-width: 600px) {
  /* Shrink hotel name and logo for mobile */
  .hotel-name {
    font-size: 2rem !important;
    white-space: nowrap;
  }
  .logo-img {
    height: 60px;
    max-width: 60px;
  }
.main-nav {
    gap: 0.3rem;  /* or even 0.3rem, adjust as needed */
  }
  /* Enlarge nav links for mobile */
  .main-nav a {
    font-size: 1rem;
    padding: 0.3em 0.6em;
    
  }
}
body {
  background: linear-gradient(120deg, #E3F0FF 0%, #F8F8FF 100%);
  font-family: Arial, sans-serif;
}

.login-card, .invoice-card {
  max-width: 650px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(40,150,190,0.15);
}

.hotel-header {
  text-align: center;
  color: #2279c2;
  margin-bottom: 20px;
}

.form-label {
  font-weight: bold;
  color: #316dab;
}

.form-input {
  width: 100%;
  padding: 7px;
  border-radius: 8px;
  border: 1px solid #b4d2ec;
  margin-bottom: 15px;
  background: #eef6fc;
}

.flex-row {
  display: flex;
  gap: 18px;
}

.form-group { flex: 1; }

.btn-primary {
  background: linear-gradient(90deg,#2279c2,#18a6f7);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
}

.btn-action {
  background: #ffb622;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
}

.btn-secondary {
  background: #b4d2ec;
  color: #2279c2;
  border: none;
  padding: 7px 14px;
  border-radius: 8px;
}

.error-msg {
  color: red;
  margin-top: 10px;
}

