/*
 * === COMPONENT: HOME PAGE ===
 */

.home-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  /* Get component to take up at least the viewport height */
  min-height: 70vh; 
  justify-content: center;
}

.home-logo-card {
  background-color: #fff;
  padding: 1rem 3rem;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.home-logo {
  font-size: 5rem;
  font-weight: bold;
  color: var(--theme-color);
  line-height: 1;
}

.home-text-block {
  margin-bottom: 2rem;
}

.home-title-hindi {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.home-subtitle-hindi {
  font-size: 1.1rem;
  color: #555;
  font-style: italic;
}

.home-title-english {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.home-subtitle-english {
  font-size: 1rem;
  color: #555;
  font-style: italic;
}

.home-map-img {
  max-width: 200px;
  height: auto;
  opacity: 0.5;
  margin: 1rem 0 2.5rem 0;
}

.home-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 350px;
}

/* Make buttons side-by-side on larger screens */
@media (min-width: 600px) {
  .home-cta-buttons {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }
  
  .home-cta-buttons .btn {
    width: auto; /* Override full-width mobile style */
  }
}