/* About Hero Section Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.about-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 50%, #43e97b 100%);
  color: white;
  height: 80vh;
  position: relative;
  overflow: hidden;
  margin-top: 56px; /* Account for fixed navbar */
}

.about-content {
  animation: fadeIn 1.5s ease;
}

.about-logo {
  width: 150px;
  margin-bottom: 1rem;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin: 0.5rem 0;
}

.subtitle {
  font-size: 1.5rem;
  font-style: italic;
  margin: 0;
  opacity: 0.8;
}

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

/* Mobile */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .about-logo {
    width: 120px;
  }
}
