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

:root {
  /* Luxury Color Palette */
  --primary: #1a1a2e;
  --secondary: #c9a961;
  --accent: #eee2dc;
  --dark: #0f0f1e;
  --light: #f5f1ed;
  --white: #ffffff;
  --gray: #8b8b8b;
  --success: #2d6a4f;
  --gold: #d4af37;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background: var(--secondary);
  color: var(--white);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

nav.scrolled {
  background: rgba(26, 26, 46, 0.98);
  box-shadow: var(--shadow-lg);
  padding: 0.8rem 0;
}

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

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo i {
  font-size: 1.5rem;
}

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

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  position: relative;
}

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

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

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

.btn-nav {
  padding: 0.6rem 1.5rem !important;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--secondary), var(--gold));
  color: var(--dark) !important;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.btn-nav::after {
  display: none;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
  color: var(--dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(26, 26, 46, 0.6), rgba(26, 26, 46, 0.4)),
    url("./img/h1\ \(4\).jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  padding: 2rem;
}

.hero-content {
  max-width: 1000px;
  animation: fadeInUp 1.2s ease-out;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 169, 97, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--white), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1.1rem 2.8rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--gold));
  color: var(--dark);
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 169, 97, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 2rem;
  color: var(--secondary);
}

/* Section Styles */
section {
  padding: 7rem 2rem;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary), var(--gold));
  color: var(--dark);
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.section-description {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* About Section */
.about {
  background: var(--light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

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

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

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--secondary), var(--gold));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
}

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

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

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

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.feature-card h4 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.feature-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Rooms Section */
.rooms {
  background: var(--white);
}

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

.room-card {
  background: var(--white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.room-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary);
}

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

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

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

.room-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--secondary), var(--gold));
  color: var(--dark);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.room-content {
  padding: 2.5rem;
}

.room-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.room-title {
  font-size: 2rem;
  color: var(--primary);
}

.room-price {
  text-align: right;
}

.room-price .amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary);
  font-family: "Cormorant Garamond", serif;
}

.room-price .period {
  font-size: 0.9rem;
  color: var(--gray);
}

.room-features {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.room-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray);
  font-size: 0.95rem;
}

.room-feature i {
  color: var(--secondary);
  font-size: 1.1rem;
}

.room-description {
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* Gallery Section */
.gallery {
  background: var(--light);
}

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

.gallery-item {
  position: relative;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.9), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: var(--white);
  font-size: 1.5rem;
}

/* Amenities */
.amenities {
  background: var(--white);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
}

.amenity-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--light);
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.amenity-item:hover {
  background: linear-gradient(135deg, var(--secondary), var(--gold));
  color: var(--white);
  transform: translateY(-8px);
  border-color: var(--gold);
}

.amenity-item i {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  color: var(--secondary);
  transition: color 0.3s;
}

.amenity-item:hover i {
  color: var(--white);
}

.amenity-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Testimonials */
.testimonials {
  background: var(--primary);
  color: var(--white);
}

.testimonials .section-badge {
  background: linear-gradient(135deg, var(--secondary), var(--gold));
  color: var(--dark);
}

.testimonials .section-title,
.testimonials .section-description {
  color: var(--white);
}

.testimonial-slider {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  padding: 4rem 3rem;
  border-radius: 25px;
  text-align: center;
  border: 1px solid rgba(201, 169, 97, 0.2);
}

.testimonial-text {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 2.5rem;
  line-height: 1.9;
  color: var(--accent);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.author-info {
  text-align: left;
}

.author-info h5 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.author-info p {
  font-size: 0.95rem;
  opacity: 0.8;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background: rgba(201, 169, 97, 0.6);
}

.dot.active {
  background: var(--secondary);
  width: 40px;
  border-radius: 10px;
}

/* Contact */
.contact {
  background: var(--light);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: start;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.contact-card h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.contact-card p {
  color: var(--gray);
  line-height: 1.8;
}

.contact-card a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-card a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 25px;
  box-shadow: var(--shadow-lg);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid var(--light);
  border-radius: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 5rem 2rem 2rem;
}

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

.footer-section h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.footer-section p {
  opacity: 0.85;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.85;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 50px;
  height: 50px;
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--secondary), var(--gold));
  color: var(--dark);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, var(--secondary), var(--gold));
  border: none;
  border-radius: 50px;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(10px);
  overflow-y: auto;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 25px;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.4s ease-out;
}

.modal-close {
  position: sticky;
  top: 1.5rem;
  right: 1.5rem;
  float: right;
  width: 50px;
  height: 50px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.modal-close:hover {
  background: var(--secondary);
  transform: rotate(90deg) scale(1.1);
}

.modal-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.modal-body {
  padding: 3rem;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 2rem;
  gap: 2rem;
}

.modal-title {
  font-size: 3rem;
  color: var(--primary);
}

.modal-price {
  text-align: right;
}

.modal-price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary);
  font-family: "Cormorant Garamond", serif;
}

.modal-price .period {
  color: var(--gray);
  font-size: 1rem;
}

.modal-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 2.5rem;
  background: var(--light);
  border-radius: 20px;
}

.modal-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
}

.modal-feature i {
  color: var(--secondary);
  font-size: 1.3rem;
}

.modal-description {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 2.5rem;
}

.booking-info {
  background: var(--light);
  padding: 2.5rem;
  border-radius: 20px;
  margin-top: 2.5rem;
}

.booking-info h4 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-details {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin: 1.5rem 0;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--light);
}

.payment-row:last-child {
  border-bottom: none;
}

.payment-label {
  font-weight: 600;
  color: var(--primary);
}

.payment-value {
  color: var(--gray);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .rooms-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 2rem;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    align-items: flex-start;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
  }

  /* Sections */
  section {
    padding: 5rem 1.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  /* Rooms */
  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .room-header {
    flex-direction: column;
    gap: 1rem;
  }

  .room-price {
    text-align: left;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 300px;
  }

  /* Amenities */
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Modal */
  .modal {
    padding: 1rem;
  }

  .modal-content {
    max-height: 95vh;
  }

  .modal-body {
    padding: 2rem 1.5rem;
  }

  .modal-header {
    flex-direction: column;
    gap: 1rem;
  }

  .modal-title {
    font-size: 2rem;
  }

  .modal-price {
    text-align: left;
  }

  .modal-price .amount {
    font-size: 2.5rem;
  }

  .modal-features {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .modal-image {
    height: 250px;
  }

  .booking-info {
    padding: 1.5rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .logo {
    font-size: 1.5rem;
  }

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

  .modal-title {
    font-size: 1.8rem;
  }

  .modal-price .amount {
    font-size: 2rem;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--secondary), var(--gold));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Loading Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading {
  animation: shimmer 2s infinite;
  background: linear-gradient(
    to right,
    var(--light) 4%,
    var(--accent) 25%,
    var(--light) 36%
  );
  background-size: 1000px 100%;
}
