/* Home Page Specific Styles */

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?w=1920&h=1080&fit=crop') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 14, 78, 0.7), rgba(244, 208, 63, 0.3));
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFFFF0;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 20px;
  color: #F4D03F;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Rooms Section */
.rooms-section, .amenities-preview, .testimonials-section, .newsletter-section {
  padding: 100px 0;
}

.rooms-section {
  background: #fff;
}

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

.room-card {
  background: #fff;
  border: 1px solid rgba(74, 14, 78, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(74, 14, 78, 0.15);
}

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

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

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

.room-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F4D03F;
  color: #4A0E4E;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.room-content {
  padding: 30px;
}

.room-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #4A0E4E;
  margin-bottom: 10px;
}

.room-size {
  color: #888;
  font-size: 14px;
  margin-bottom: 15px;
}

.room-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

.room-amenities {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.room-amenities span {
  font-size: 12px;
  color: #666;
  background: rgba(74, 14, 78, 0.05);
  padding: 5px 10px;
}

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(74, 14, 78, 0.1);
}

.room-price {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #F4D03F;
}

.room-price small {
  font-size: 14px;
  color: #888;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

.room-btn {
  padding: 10px 25px;
  background: #4A0E4E;
  color: #F4D03F;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.room-btn:hover {
  background: #6B1E6F;
  box-shadow: 0 5px 15px rgba(74, 14, 78, 0.3);
}

/* Amenities Preview */
.amenities-preview {
  background: linear-gradient(135deg, #4A0E4E, #6B1E6F);
}

.amenities-preview .section-title,
.amenities-preview .section-subtitle {
  color: #FFFFF0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.amenity-item {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(244, 208, 63, 0.2);
  transition: all 0.3s;
}

.amenity-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #F4D03F;
  transform: translateY(-5px);
}

.amenity-icon {
  font-size: 56px;
  color: #F4D03F;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #F4D03F;
  border-radius: 50%;
  margin: 0 auto 25px;
  transition: all 0.3s;
}

.amenity-item:hover .amenity-icon {
  background: #F4D03F;
  color: #4A0E4E;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 30px rgba(244, 208, 63, 0.5);
}

.amenity-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #F4D03F;
  margin-bottom: 10px;
}

.amenity-item p {
  color: #FFFFF0;
  font-size: 14px;
  line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
  background: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: rgba(74, 14, 78, 0.02);
  border: 1px solid rgba(74, 14, 78, 0.1);
  padding: 40px 30px;
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: #F4D03F;
  box-shadow: 0 10px 30px rgba(74, 14, 78, 0.15);
}

.testimonial-stars {
  color: #F4D03F;
  font-size: 20px;
  margin-bottom: 20px;
}

.testimonial-text {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 15px;
  font-style: italic;
}

.testimonial-author h4 {
  font-family: 'Playfair Display', serif;
  color: #4A0E4E;
  font-size: 18px;
  margin-bottom: 5px;
}

.testimonial-author span {
  color: #888;
  font-size: 13px;
}

/* Newsletter */
.newsletter-section {
  background: linear-gradient(135deg, #4A0E4E, #F4D03F);
  text-align: center;
}

.newsletter-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
  color: #FFFFF0;
}

.newsletter-content p {
  color: #FFFFF0;
  margin-bottom: 30px;
  font-size: 18px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #F4D03F;
  color: #4A0E4E;
  font-size: 16px;
}

.newsletter-form input::placeholder {
  color: #888;
}

.newsletter-form input:focus {
  outline: none;
  background: #fff;
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74, 14, 78, 0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.gallery-overlay h4 {
  font-family: 'Playfair Display', serif;
  color: #F4D03F;
  font-size: 20px;
}

/* Offers Section */
.offers-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(74, 14, 78, 0.05), rgba(244, 208, 63, 0.05));
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.offer-card {
  background: #fff;
  border: 2px solid rgba(74, 14, 78, 0.1);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.offer-card.featured {
  border-color: #F4D03F;
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(74, 14, 78, 0.2);
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(74, 14, 78, 0.15);
}

.offer-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.offer-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #4A0E4E;
  color: #F4D03F;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-badge.exclusive {
  background: #F4D03F;
  color: #4A0E4E;
}

.offer-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #4A0E4E;
  margin-bottom: 20px;
}

.offer-price {
  margin-bottom: 30px;
}

.offer-price .price {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: #F4D03F;
  display: block;
}

.offer-price .price-detail {
  color: #888;
  font-size: 14px;
}

.offer-features {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
  padding: 0;
}

.offer-features li {
  padding: 10px 0;
  color: #666;
  font-size: 14px;
  border-bottom: 1px solid rgba(74, 14, 78, 0.1);
}

.offer-features li:last-child {
  border-bottom: none;
}

.offer-btn {
  display: inline-block;
  padding: 12px 35px;
  background: #4A0E4E;
  border: 2px solid #4A0E4E;
  color: #F4D03F;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s;
}

.offer-btn:hover {
  background: #6B1E6F;
  border-color: #6B1E6F;
  color: #FFE066;
  box-shadow: 0 5px 20px rgba(74, 14, 78, 0.4);
}

.offer-btn.primary {
  background: #F4D03F;
  border-color: #F4D03F;
  color: #4A0E4E;
}

.offer-btn.primary:hover {
  background: #FFE066;
  border-color: #FFE066;
  color: #4A0E4E;
  box-shadow: 0 5px 20px rgba(244, 208, 63, 0.4);
}

/* Responsive */
@media (max-width: 968px) {
  .hero-title {
    font-size: 48px;
  }

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

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

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

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

  .offer-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 36px;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

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

  .offer-card h3 {
    font-size: 24px;
  }

  .offer-price .price {
    font-size: 32px;
  }
}
