/* YASH GRANDE - Luxury Hospitality Website */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --primary-gold: #C5A46D;
  --dark-gold: #9E7B43;
  --matte-black: #0F0F0F;
  --dark-bg: #171717;
  --soft-white: #F7F5F2;
  --premium-gray: #BDBDBD;
  --glass-effect: rgba(255,255,255,0.06);
  --overlay: rgba(0,0,0,0.65);
  --heading-font: 'Cormorant Garamond', serif;
  --body-font: 'Montserrat', sans-serif;
}

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

/* Loading Animation */
.btn-loading {
    position: relative;
    pointer-events: none;
    color: transparent !important;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    top: 50%;
    left: 50%;
    margin: -0.625rem 0 0 -0.625rem;
    border: 2px solid rgba(0,0,0,0.2);
    border-top-color: #000;
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
}

/* Secondary btn might need white spinner */
.btn-secondary.btn-loading::after {
    border-color: rgba(197,164,109,0.2);
    border-top-color: var(--primary-gold);
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  background: var(--matte-black);
  color: var(--soft-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--matte-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease;
}

.loader-content {
  text-align: center;
}

.loader h1 {
  font-family: var(--heading-font);
  font-size: 4rem;
  color: var(--primary-gold);
  text-shadow: 0 0 30px var(--primary-gold);
  animation: glow 2s ease-in-out infinite alternate;
  margin-bottom: 2rem;
}

.loader-text {
  font-family: var(--body-font);
  font-size: 1.2rem;
  color: var(--soft-white);
  margin-bottom: 2rem;
  opacity: 0.8;
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.loading-dots span {
  width: 12px;
  height: 12px;
  background: var(--primary-gold);
  border-radius: 50%;
  animation: loadingDots 1.5s ease-in-out infinite;
}

.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.3s; }
.loading-dots span:nth-child(3) { animation-delay: 0.6s; }

@keyframes loadingDots {
  0%, 60%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  30% {
    transform: scale(1.3);
    opacity: 1;
  }
}

/* Mobile Loader Styles */
@media (max-width: 768px) {
  .loader h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .loader-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 2rem;
  }
  
  .loading-dots {
    gap: 0.4rem;
  }
  
  .loading-dots span {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .loader h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .loader-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
    line-height: 1.4;
  }
  
  .loading-dots {
    gap: 0.3rem;
  }
  
  .loading-dots span {
    width: 8px;
    height: 8px;
  }
}

@keyframes glow {
  from { text-shadow: 0 0 20px var(--primary-gold); }
  to { text-shadow: 0 0 40px var(--primary-gold), 0 0 60px var(--primary-gold); }
}

.loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Processing Loader */
.processing-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.processing-loader-content {
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.processing-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(197, 164, 109, 0.2);
    border-top: 3px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

.processing-text {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--primary-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 5%;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-effect);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

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

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--soft-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.book-btn {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--matte-black);
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(197, 164, 109, 0.3);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background: var(--primary-gold);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.hero h1 {
  font-family: var(--heading-font);
  font-size: 4.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--soft-white);
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: var(--premium-gray);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--matte-black);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary {
  background: transparent;
  color: var(--soft-white);
  padding: 1rem 2.5rem;
  border: 2px solid var(--primary-gold);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(197, 164, 109, 0.3);
}

.btn-secondary:hover {
  background: var(--primary-gold);
  color: var(--matte-black);
}

/* Section Styles */
.section {
  padding: 8rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--premium-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-text h3 {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 2rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--premium-gray);
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--glass-effect);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(197, 164, 109, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(197, 164, 109, 0.1);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.feature-card h4 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  color: var(--soft-white);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--premium-gray);
  line-height: 1.6;
}

/* Amenities Section */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.amenity-card {
  background: var(--dark-bg);
  border: 1px solid rgba(197, 164, 109, 0.2);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 15px 40px rgba(197, 164, 109, 0.1);
}

.amenity-card i {
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.amenity-card h4 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  color: var(--soft-white);
  margin-bottom: 1rem;
}

/* Rooms Section */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.room-card {
  background: var(--dark-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(197, 164, 109, 0.1);
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.room-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.1);
}

.room-content {
  padding: 2rem;
}

.room-content h4 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.room-content p {
  color: var(--premium-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.room-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

/* Stats Section */
.stats {
  background: var(--dark-bg);
  padding: 6rem 5%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.stat-number {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--premium-gray);
  font-weight: 500;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.testimonial-card {
  background: var(--glass-effect);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(197, 164, 109, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
}

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

.testimonial-author {
  font-weight: 600;
  color: var(--primary-gold);
  font-size: 1.1rem;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--dark-gold), var(--primary-gold));
  padding: 6rem 5%;
  text-align: center;
}

.cta h2 {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  color: var(--matte-black);
  margin-bottom: 2rem;
}

.cta p {
  font-size: 1.3rem;
  color: var(--matte-black);
  margin-bottom: 3rem;
  opacity: 0.8;
}

.cta .btn-primary {
  background: var(--matte-black);
  color: var(--primary-gold);
}

/* Footer */
.footer {
  background: var(--matte-black);
  padding: 5rem 5% 2rem;
  border-top: 1px solid rgba(197, 164, 109, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.footer-section p, .footer-section a {
  color: var(--premium-gray);
  text-decoration: none;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(197, 164, 109, 0.1);
  color: var(--premium-gray);
}

/* Page Headers */
.page-header {
  height: 60vh;
  background: linear-gradient(var(--overlay), var(--overlay)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-header h1 {
  font-family: var(--heading-font);
  font-size: 4rem;
  color: var(--soft-white);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.3rem;
  color: var(--premium-gray);
}

/* Room Details Styles */
.room-hero {
  height: 70vh;
  position: relative;
  background: url('https://images.unsplash.com/photo-1631049307264-da0ec9d70304?ixlib=rb-4.0.3') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-hero-content {
  text-align: center;
  z-index: 2;
}

.room-hero h1 {
  font-family: var(--heading-font);
  font-size: 4rem;
  color: var(--soft-white);
  margin-bottom: 1rem;
}

.room-hero .price {
  font-size: 2rem;
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 2rem;
}

.room-details-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.room-info h3 {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 2rem;
}

.room-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.spec-item {
  background: var(--dark-bg);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.spec-item strong {
  color: var(--primary-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.amenities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.amenities-list li {
  background: var(--glass-effect);
  padding: 1rem;
  border-radius: 8px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.amenities-list i {
  color: var(--primary-gold);
}

/* Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact Form */
.contact-form {
  background: var(--glass-effect);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(197, 164, 109, 0.2);
  border-radius: 20px;
  padding: 3rem;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-gold);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(197, 164, 109, 0.3);
  border-radius: 10px;
  color: var(--soft-white);
  font-family: var(--body-font);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 20px rgba(197, 164, 109, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 4%;
    background: rgba(15, 15, 15, 0.95);
    border-bottom: 1px solid rgba(197, 164, 109, 0.3);
  }
  
  .nav-container {
    position: relative;
  }
  
  .logo {
    gap: 0.8rem;
  }
  
  .logo img {
    height: 42px;
  }
  
  .logo-text {
    font-size: 1.6rem;
    font-weight: 700;
  }
  
  .mobile-menu {
    display: flex;
    z-index: 1001;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .mobile-menu:hover {
    background: rgba(197, 164, 109, 0.1);
  }
  
  .mobile-menu span {
    width: 28px;
    height: 3px;
    background: var(--primary-gold);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  
  .mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .mobile-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.98), rgba(23, 23, 23, 0.98));
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 2.5rem;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .nav-links.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  
  .nav-links li {
    transform: translateY(30px);
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
  }
  
  .nav-links li:nth-child(1) { animation-delay: 0.1s; }
  .nav-links li:nth-child(2) { animation-delay: 0.2s; }
  .nav-links li:nth-child(3) { animation-delay: 0.3s; }
  .nav-links li:nth-child(4) { animation-delay: 0.4s; }
  .nav-links li:nth-child(5) { animation-delay: 0.5s; }
  
  .nav-links a {
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .nav-links a:hover {
    background: rgba(197, 164, 109, 0.15);
    transform: scale(1.05);
    color: var(--primary-gold);
  }
  
  .nav-links a::after {
    display: none;
  }
  
  .book-btn {
    display: none;
  }
  
  /* Mobile Book Button in Menu */
  .nav-links::after {
    content: 'Book Now';
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--matte-black);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 10px 30px rgba(197, 164, 109, 0.3);
  }
  
  .nav-links::after:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(197, 164, 109, 0.4);
  }
  
  @keyframes slideInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hero h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
  .hero p {
    font-size: 1rem;
    padding: 0 1rem;
    margin-bottom: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .btn-primary, .btn-secondary {
    width: 280px;
    text-align: center;
    padding: 1rem 2rem;
  }
  
  .section {
    padding: 4rem 5%;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .room-details-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .room-hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 1rem 3%;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 3rem 3%;
  }
  
  .btn-primary, .btn-secondary {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  .rooms-grid,
  .amenities-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Room Card Slideshow Styles */
.slideshow-container { 
    position: relative; 
    overflow: hidden; 
    height: 250px; 
    border-radius: 15px 15px 0 0;
}

.room-slide { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    opacity: 0; 
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1); 
}

.room-slide.active { 
    opacity: 1; 
}

.room-slide img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 6s linear;
}

.room-slide.active img {
    transform: scale(1.1);
}

.slideshow-dots { 
    position: absolute; 
    bottom: 20px; 
    left: 50%; 
    transform: translateX(-50%); 
    display: flex; 
    gap: 10px; 
    z-index: 10; 
}

.dot { 
    width: 8px; 
    height: 8px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.4); 
    backdrop-filter: blur(2px);
    transition: all 0.4s ease; 
}

.dot.active { 
    background: var(--primary-gold); 
    width: 25px; 
    border-radius: 10px; 
    box-shadow: 0 0 10px var(--primary-gold);
}