/* Rooms Page Styles */
.rooms-page {
  min-height: 100vh;
}

.rooms-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rooms-hero .hero-title {
  font-size: 48px;
  margin-bottom: 20px;
}

.rooms-hero .hero-subtitle {
  font-size: 24px;
  margin-bottom: 20px;
}

.rooms-hero .hero-description {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Rooms Section */
.rooms-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.room-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

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

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

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

.room-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.room-price {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 22px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.room-price span {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.9;
  margin-left: 4px;
}

.room-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-header {
  margin-bottom: 20px;
}

.room-header h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.room-meta {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: var(--text-light);
}

.capacity, .size {
  display: flex;
  align-items: center;
  gap: 5px;
}

.room-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
  flex: 1;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.feature-tag {
  background: var(--bg-light);
  color: var(--primary-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.room-amenities {
  margin-bottom: 25px;
}

.room-amenities h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.amenities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-light);
}

.check-icon {
  color: var(--primary-color);
  font-weight: bold;
}

.room-actions {
  display: flex;
  gap: 15px;
  margin-top: auto;
}

.room-actions .btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
}

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

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

/* Amenities Overview */
.amenities-overview {
  background: var(--white);
  padding: 80px 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.amenity-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--bg-light);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.amenity-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.amenity-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.amenity-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.amenity-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Booking Info */
.booking-info {
  background: linear-gradient(135deg, #2d7a2d, #1b5e20);
  padding: 80px 0;
  color: var(--white);
}

.booking-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.booking-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.booking-text p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.booking-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-actions .btn {
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.btn-gold {
  background: var(--secondary-color);
  color: var(--text-dark);
}

.btn-gold:hover {
  background: #d4af37;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .amenities-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }

  .booking-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .booking-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .rooms-hero {
    height: 50vh;
    min-height: 350px;
  }

  .rooms-hero .hero-title {
    font-size: 36px;
  }

  .rooms-hero .hero-subtitle {
    font-size: 20px;
  }

  .rooms-hero .hero-description {
    font-size: 16px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .room-card {
    flex-direction: column;
  }

  .room-image {
    height: 200px;
  }

  .room-content {
    padding: 25px;
  }

  .room-header h3 {
    font-size: 20px;
  }

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

  .booking-text h2 {
    font-size: 28px;
  }

  .booking-text p {
    font-size: 16px;
  }

  .room-actions {
    flex-direction: column;
  }
}
