/* about.css - Custom styles for about.php */

/* General Body Styles */
body {
  font-family: 'Nunito', sans-serif;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease-in-out;
}

.navbar-brand {
  font-weight: bold;
}

/* Sticky Navbar Effect */
.navbar.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-member-card {
    border-radius: 0.75rem; /* Tailwind's rounded-xl */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* Tailwind's shadow-md */
    padding: 1.5rem; /* Tailwind's p-6 */
    text-align: center;
}

.team-member-image {
    border-radius: 9999px; /* Tailwind's rounded-full */
    height: 8rem;        /* Tailwind's h-32 */
    width: 8rem;         /* Tailwind's w-32 */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;  /* Tailwind's mb-4 */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .grid-cols-3 {
        grid-template-columns: 1fr; /* Stack team members on smaller screens */
    }
    .order-md-1 {
      order: 1;
    }
    .order-md-2{
      order: 2;
    }
    .input-group {
        flex-direction: column;
    }
    .input-group .btn {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Additional Styles for Consistency */
.rounded-xl {
    border-radius: 0.75rem;
}

.shadow-lg {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.shadow-md {
   box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}