/* ===== HOME PAGE STYLES ===== */

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

@media (max-width: 640px) {
  .hero {
    height: auto;
    min-height: 80vh;
    padding: 6rem 1.5rem 3rem;
  }
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 4.5rem;
  }
}

.hero-content p.subtitle {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.875rem;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.hero-content p.date {
  font-size: 1.125rem;
  opacity: 0.7;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  background: black;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Story Section */
.story-section {
  max-width: 896px;
  margin: 0 auto;
  padding: 7rem 1.5rem;
  text-align: center;
}

.story-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

.story-section p {
  opacity: 0.7;
  line-height: 1.625;
  font-size: 1rem;
}

/* Image Section */
.image-section {
  padding: 0 1.5rem 6rem 1.5rem;
}

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

.image-container img {
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
  display: block;
}

.image-container img:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
