/* === Homepage Section === */
.homepage-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
  min-height: 70vh;
  background: linear-gradient(to bottom, #fcfcfc, #f4f4f4);
  animation: fadeSlideIn 0.7s ease-out both;
}

/* === Paragraph Section === */
.homepage-container p {
  max-width: 700px;
  font-size: 1.3rem;
  color: #2c3e50;
  line-height: 1.7;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 400; 
}

/* === Button Row === */
.homepage-buttons {
  display: flex;
  gap: 20px;
 
  justify-content: center;
}

/* === Button Styling === */
.homepage-buttons button {
  padding: 16px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  background-color: #ffeb3b;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.homepage-buttons button:hover {
  background-color: #ffe600;
  transform: translateY(-3px);
}

/* === Entrance Animation === */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsive Adjustments === */
@media (max-width: 600px) {
  .homepage-container p {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  .homepage-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .homepage-buttons button {
    width: 100%;
    max-width: 300px;
  }
}
