@import url('styles.css');

/* Hero */
.hero-section {
  position: relative;
  height: 80vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
}

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

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 15px;
}

.hero-content p {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 25px;
}

/* Overview */
.overview-section {
  padding: 70px 20px;
  text-align: center;
}

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

.overview-divider {
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  margin: 20px auto;
}

.overview-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--primary-color);
  margin-bottom: 20px;
}

.overview-container p {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark-color);
}

/* Offers Grid */
.offers-section {
  padding: 30px 20px 80px;
  background: var(--light-color);
}

.offers-section h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
  margin-bottom: 45px;
}

.offers-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.offer-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.offer-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.offer-card:hover {
  transform: translateY(-8px);
}

.offer-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.offer-card-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offer-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.offer-card p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-color);
  margin-bottom: 18px;
  flex: 1;
}

.offer-card .btn-primary {
  align-self: flex-start;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .offers-section {
    padding: 20px 15px 60px;
  }
}

/* CTA Section */
.cta-section {
  padding: 40px 20px;
  background: var(--primary-color);
  color: #fff;
  text-align: center;
}

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

.cta-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 15px;
}

.cta-container p {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-section a {
  color: #fff;
  text-decoration: none;
}
