/* Home Section Styles */
#home {
  padding-top: calc(var(--nav-height) + 2rem);
  min-height: 80vh;
}

#home-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1rem;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

#home-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

#home-image img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#home-text {
  flex: 2;
  min-width: 300px;
}

#home-text h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  /* max-width: 20ch; */
}

#home-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  max-width: 25ch;
}

#home-text p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  max-width: 45ch;
  line-height: 1.6;
}

.highlight {
  color: var(--secondary-color);
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.image-container {
  text-align: center;
  padding: 2rem;
  margin-top: -100px;
}

.image-container img {
  max-width: 100%;
  height: auto;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  #home-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  #home-text {
    text-align: center;
  }

  #home-text h1,
  #home-text h2,
  #home-text p {
    max-width: none;
  }

  #home-image {
    margin: 0;
  }

  .image-container {
    margin-top: -50px;
  }
}

@media screen and (max-width: 480px) {
  #home {
    padding-top: 4rem;
  }

  #home-content {
    padding: 1rem;
  }
}