html,
body {
  box-sizing: border-box;
  zoom: 0.85;
}

:root {
  --charcoal: #2c2c2c;
  --ivory: #fffff0;
  --bronze: #cd7f32;
  --slate: #4a5568;
  --pearl: #f7f7f7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Montserrat", sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
}

.page-wrapper {
  width: 100%;
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(44, 44, 44, 0.08);
  padding: 1.25rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--slate);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.main-nav a:hover {
  color: var(--bronze);
}

.mobile-menu-btn {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 991px) {
  .mobile-menu-btn {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem 0;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav li {
    text-align: center;
    padding: 0.75rem 0;
  }
}

.main-nav a:hover {
  color: var(--bronze);
}

.header-btn {
  background: var(--charcoal);
  color: white;
  border: none;
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header-btn:hover {
  background: var(--bronze);
}

/* Hero Section */
.hero-section {
  padding-top: 90px;
  min-height: calc(100vh - 90px); /* 🔴 changed */
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, var(--ivory) 0%, var(--pearl) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-text-content {
  max-width: 600px;
}

.hero-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.5rem;
}

.hero-main-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.hero-main-title strong {
  font-weight: 600;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.btn-primary-action {
  background: var(--charcoal);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary-action:hover {
  background: var(--bronze);
  transform: translateY(-2px);
}

.btn-secondary-action {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary-action:hover {
  background: var(--charcoal);
  color: white;
}

.hero-image-area {
  position: relative;
}
.hero-image-placeholder {
  height: 450px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps image premium */
}

.main-hero-card {
  background: white;
  border: 1px solid rgba(44, 44, 44, 0.1);
  overflow: hidden;
}

.hero-image-placeholder {
  height: 450px;
  background: linear-gradient(135deg, #e8e8e8 0%, #d4d4d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.image-icon {
  font-size: 6rem;
  opacity: 0.3;
}

.hero-card-info {
  padding: 2rem;
}

.card-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.75rem;
}

.card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.card-description {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.card-features {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(44, 44, 44, 0.08);
}

.feature-badge {
  font-size: 0.875rem;
  color: var(--slate);
}

.card-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stats-bar {
  background: var(--charcoal);
  color: white;
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

/* Features Section */
.features-section,
.rooms-section,
.testimonials-section,
.cta-section {
  scroll-margin-top: 120px; /* ✅ FIX anchor scroll */
}
.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-tag {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-text {
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-box {
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.feature-box:hover .feature-icon-box {
  background: var(--bronze);
  transform: scale(1.1);
}

.feature-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.feature-description {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.7;
}

/* Rooms Section */
.rooms-section {
  padding: 6rem 0;
  background: var(--pearl);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.room-card {
  background: white;
  border: 1px solid rgba(44, 44, 44, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.room-image {
  height: 250px;
  background: linear-gradient(135deg, #e8e8e8 0%, #d4d4d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.room-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--bronze);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.room-content {
  padding: 1.75rem;
}

.room-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.room-details {
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.room-amenities {
  display: flex;
  flex-wrap: wrap;         
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(44, 44, 44, 0.08);
}
@media (max-width: 600px) {
  .amenity-item {
    font-size: 0.75rem;
  }
}

.amenity-item {
  font-size: 0.85rem;
  color: var(--slate);
}

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--charcoal);
}

.room-price-unit {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--slate);
}

.room-book-btn {
  background: var(--charcoal);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.room-book-btn:hover {
  background: var(--bronze);
}

#bookingModal .modal-content {
  border-radius: 0;
  border: none;
  background: #ffffff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

#bookingModal .modal-header {
  border-bottom: 1px solid rgba(44, 44, 44, 0.08);
  padding: 1.75rem 2rem;
}

#bookingModal .modal-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #2c2c2c;
}

#bookingModal .btn-close {
  filter: grayscale(100%);
  opacity: 0.6;
}

#bookingModal .modal-body {
  padding: 2rem;
}

#bookingModal label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

#bookingModal .form-control {
  border-radius: 0;
  border: 1px solid rgba(44, 44, 44, 0.2);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

#bookingModal .form-control:focus {
  border-color: #cd7f32;
  box-shadow: none;
}

#bookingModal .modal-footer {
  border-top: 1px solid rgba(44, 44, 44, 0.08);
  padding: 1.5rem 2rem;
}

#bookingModal .btn-dark {
  background: #2c2c2c;
  border: none;
  border-radius: 0;
  padding: 0.75rem 2.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

#bookingModal .btn-dark:hover {
  background: #cd7f32;
  transform: translateY(-2px);
}

/* Booking Slider */
.booking-slider {
  position: fixed;
  top: 0;
  right: -500px;
  width: 500px;
  height: 135vh;
  background: #ffffff;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
}

.booking-slider.open {
  right: 0;
}

.booking-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.booking-header h4 {
  margin: 0;
  font-weight: 600;
}

.booking-header button {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

.booking-body {
  padding: 1.5rem;
  overflow-y: auto;
}

.booking-card {
  border: 1px solid #eee;
  padding: 1rem;
  margin-bottom: 1rem;
}

.booking-card h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.status {
  margin-top: 0.5rem;
  font-weight: 600;
}

/* Testimonials */
.testimonials-section {
  padding: 6rem 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.testimonial-card {
  background: var(--pearl);
  padding: 2.5rem;
  border-left: 3px solid var(--bronze);
}

.quote-icon {
  font-size: 3rem;
  color: var(--bronze);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--bronze);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.25rem;
}

.author-details h5 {
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.author-details p {
  font-size: 0.875rem;
  color: var(--slate);
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: var(--charcoal);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  background: #1a1a1a;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  opacity: 0.6;
  font-size: 0.9rem;
}

/* Responsive */

.hero-grid {
  grid-template-columns: 1fr;
  gap: 3rem;
}

.stats-grid {
  grid-template-columns: repeat(2, 1fr);
}

.features-grid {
  grid-template-columns: repeat(2, 1fr);
}

/* .rooms-grid {
        grid-template-columns: 1fr;
      } */
.rooms-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonials-grid {
  grid-template-columns: 1fr;
}
#toast-container {
  position: fixed;
  top: 90px;                 /* BELOW fixed header */
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  width: 90%;
  max-width: 420px;
  pointer-events: none;
}

.toast-msg {
  background: #fff3cd;
  color: #664d03;
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
  animation: slideDown .4s ease;
  pointer-events: auto;
}

/* Success */
.toast-msg.alert-success {
  background: #d1e7dd;
  color: #0f5132;
}

.toast-msg.alert-danger {
  background: #f8d7da;
  color: #842029;
}

.modal-backdrop.show {
  background: rgba(255,255,255,0.6) !important;
  backdrop-filter: blur(4px);
}

/* Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media(max-width:600px){
  #toast-container {
    top: 80px;
    width: 95%;
  }
}

@media (max-width: 767px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn-primary-action,
  .btn-secondary-action {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }
}

@view-transition {
  navigation: auto;
}
