/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  background: linear-gradient(rgba(45, 122, 45, 0.7), rgba(27, 94, 32, 0.8));
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  animation: fadeInUp 1s ease-out;
}

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

.hero-text {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 28px;
  color: #a5d6a7;
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-indicator {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #a5d6a7, transparent);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0%, 100% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(10px); }
}

/* Welcome Section */
.welcome-section {
  background: var(--bg-light);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.welcome-image .image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow);
}

.welcome-image .image-placeholder p {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
}

.welcome-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 20px;
}

.welcome-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
  padding: 30px 0;
  border-top: 2px solid rgba(45, 80, 22, 0.1);
  border-bottom: 2px solid rgba(45, 80, 22, 0.1);
}

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

.stat-item h3 {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-weight: 700;
}

.stat-item p {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

/* Features Section */
.features-section {
  background: var(--white);
}

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

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--white);
}

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

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

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

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

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

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

.room-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}

.room-image .image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
}

.room-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.room-content {
  padding: 30px;
}

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

.room-content > p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.room-features span {
  font-size: 13px;
  color: var(--text-light);
}

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 2px solid var(--bg-light);
}

.room-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
}

.per-night {
  font-size: 14px;
  color: var(--text-light);
}

/* Why Choose Us */
.why-choose-section {
  background: var(--white);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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

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

.why-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.2);
}

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

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

/* Testimonials */
.testimonials-section {
  background: var(--bg-light);
}

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

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
}

.testimonial-author h4 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.testimonial-author p {
  font-size: 13px;
  color: var(--text-light);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #2d7a2d, #1b5e20);
  padding: 100px 0;
  text-align: center;
  margin-bottom: 0;
  color: var(--white);
}

.cta-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

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

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

/* Responsive */
@media (max-width: 1024px) {
  .welcome-grid {
    gap: 50px;
  }

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

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

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

@media (max-width: 768px) {
  .hero {
    height: 80vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 40px;
  }

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

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

  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .stat-item h3 {
    font-size: 32px;
  }

  .features-grid,
  .rooms-grid,
  .why-choose-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 16px;
  }
}
