/* Booking Form Container - Light Mode */
.booking-form-container {
  font-family: 'Segoe UI', Roboto, sans-serif;
  max-width: 340px;
  margin: 0.5rem auto;
  background-color: #ffffff;
  border: 1px solid #e1e5e9;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  font-size: 0.75rem;
  position: relative;
  transition: all 0.3s ease;
}

/* Dark Mode Support */
[data-md-color-scheme="slate"] .booking-form-container {
  background-color: #2d3748;
  border: 1px solid #4a5568;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* Heading Styles */
.booking-form-container h2 {
  text-align: center;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: #2d3748;
  font-weight: 600;
}

[data-md-color-scheme="slate"] .booking-form-container h2 {
  color: #f7fafc;
}

/* Label Styles */
.booking-form-container label {
  display: block;
  margin-bottom: 0.15rem;
  font-weight: 500;
  color: #4a5568;
  font-size: 0.75rem;
}

[data-md-color-scheme="slate"] .booking-form-container label {
  color: #e2e8f0;
}

/* Input and Select Styles */
.booking-form-container input,
.booking-form-container select {
  width: 100%;
  padding: 0.25rem 0.4rem;
  margin-bottom: 0.4rem;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-size: 0.75rem;
  box-sizing: border-box;
  background-color: #ffffff;
  color: #2d3748;
  transition: all 0.2s ease;
}

.booking-form-container input:focus,
.booking-form-container select:focus {
  outline: none;
  border-color: #3182ce;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

[data-md-color-scheme="slate"] .booking-form-container input,
[data-md-color-scheme="slate"] .booking-form-container select {
  background-color: #4a5568;
  border-color: #718096;
  color: #f7fafc;
}

[data-md-color-scheme="slate"] .booking-form-container input:focus,
[data-md-color-scheme="slate"] .booking-form-container select:focus {
  border-color: #63b3ed;
  box-shadow: 0 0 0 3px rgba(99, 179, 237, 0.1);
}

/* Submit Button */
.booking-form-container input[type="submit"] {
  background: linear-gradient(135deg, #5aa3ea 0%, #002850 100%);
  color: white;
  font-weight: 600;
  cursor: pointer;
  border: none;
  padding: 0.4rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.booking-form-container input[type="submit"]:hover {
  background: linear-gradient(135deg, #2c5282 0%, #2a4365 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(49, 130, 206, 0.3);
}

[data-md-color-scheme="slate"] .booking-form-container input[type="submit"] {
  background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
}

[data-md-color-scheme="slate"] .booking-form-container input[type="submit"]:hover {
  background: linear-gradient(135deg, #dd6b20 0%, #c05621 100%);
  box-shadow: 0 6px 20px rgba(237, 137, 54, 0.3);
  transform: translateY(-1px);
}

/* Inline Fields */
.inline-fields {
  display: flex;
  justify-content: space-between;
  gap: 0.3rem;
}

.inline-fields .form-group {
  flex: 1;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Updated Promo Banner - Rectangle Style */
.promo-sticker {
  position: absolute;
  top: -15px;
  right: 0px;
  left: 0px;
  background: #fb8500;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px rgba(255, 148, 71, 0.4);
  border: 2px solid white;
  z-index: 1;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}

/* Additional emphasis for readability */
.promo-sticker {
  font-family: 'Segoe UI', 'Arial Black', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Form Wrapper Positioning */
#bookingFormWrapper {
  position: fixed;
  top: 150px;
  left: 0;
  width: 340px;
  padding: 0 10px;
  z-index: 1;
}

.modify-link {
  text-align: center;
  margin: 0.2rem 0 0.6rem;
  font-size: 0.7rem;
}

.modify-link a {
  color: #3182ce;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease;
}

.modify-link a:hover {
  color: #2c5282;
}

@media (min-width: 801px) {
  .md-main {
    margin-left: 360px;
  }
}

/* Responsive Design */
@media (max-width: 1250px) {
  #bookingFormWrapper {
    position: static;
    width: 100%;
    padding: 0;
    margin: 2.5rem auto;
  }
  
  .md-main {
    margin-left: 0;
  }
  
  .booking-form-container {
    margin: 0 auto;
    max-width: 440px;
  }
}

/* Hover effects for better interactivity */
.booking-form-container:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

[data-md-color-scheme="slate"] .booking-form-container:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

/* INDEX CSS */
.room-cards-section {
  max-width: 900px;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.room-card {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.room-card:hover {
  transform: scale(1.015);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.room-card img {
  width: 150px;
  height: 120px;
  object-fit: cover;
  flex-shrink: 0;
}

.room-info {
  padding: 1rem;
}

.room-info h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #004E7C;
}

.room-info p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #444;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* more index css */
.intro-text {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1rem;
  text-align: center;
}

.intro-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  animation: fadeIn 1s ease-out;
}

.intro-card .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #003B5C;
}

.intro-card p {
  margin: 1rem 0;
  color: #444;
  font-size: 1.05rem;
}

.intro-card ul {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.intro-card li {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  color: #222;
}

.intro-card a {
  color: #0077cc;
  text-decoration: none;
  font-weight: 500;
}

.intro-card a:hover {
  text-decoration: underline;
}