/* Home page styles - migrated from React Home.css */

.home-page-content {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.home-page-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--title-color);
}

.home-page-content h2 {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-top: 1rem;
}

.home-page-content u {
  color: var(--accent-hover-color);
  font-size: 1.2rem;
}

.home-page-content img {
  max-width: 100%;
  /* height: auto; */
  /* border-radius: 10px; */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); */
}

/* Responsive design */
@media (max-width: 768px) {
  .home-page-content {
    text-align: center;
    min-height: 50vh;
  }
  
  .home-page-content h1 {
    font-size: 2rem;
  }
  
  .home-page-content h2 {
    font-size: 1.5rem;
  }
  
  .home-page-content u {
    font-size: 1rem;
  }
}

/* ----------------------NEW CSS BELOW, TODO: combine with above ---------------------- */

/* Home page layout classes */
.home-flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.home-text-section {
  padding-bottom: 3rem;
}

.home-profile-image {
  width: 50%;
}
