/* Home Page Styles - White & Dark Blue Theme */
.home-hero {
  text-align: center;
  padding: 100px 0;
  background: var(--white);
}

.home-hero img {
  height: 140px;
  margin-bottom: 40px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05));
}

.home-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: -1px;
}

.home-hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.home-hero .btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .home-hero { padding: 60px 0; }
  .home-hero h1 { font-size: 2.2rem; }
  .home-hero p { font-size: 1.1rem; }
  .home-hero img { height: 100px; }
  .home-hero .btn-group { flex-direction: column; align-items: center; }
  .home-hero .btn-group a { width: 100%; max-width: 300px; }
}
