/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #004466;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}
nav .logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
}
nav ul {
  list-style: none;
  display: flex;
}
nav ul li {
  margin-left: 20px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
nav ul li a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  background: url('https://images.unsplash.com/photo-1503264116251-35a269479413?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') 
              center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 2rem;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
}

/* Sections */
section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: auto;
}
section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #004466;
}
.alt-bg {
  background: #f7f7f7;
}

/* Button */
.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #004466;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}
.btn:hover {
  background: #006699;
}

/* Footer */
footer {
  background: #004466;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Basic nav styles */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  position: relative;
}

nav ul li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: white;
}

/* Dropdown menu */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #004466;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1;
  min-width: 160px;
}

.dropdown-content li {
  display: block;
}

.dropdown-content li a {
  padding: 10px 15px;
  white-space: nowrap;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* === Meet the Team Page Styles === */

header {
  background-color: #004466;
  color: white;
  padding: 2rem;
  text-align: center;
}

.team-photo {
  text-align: center;
  margin: 2rem auto;
}

.team-photo img {
  max-width: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.member-card {
  background-color: #f4f8fa;
  border: 1px solid #d0e3ea;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.member-card:hover {
  transform: translateY(-5px);
}

.member-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.member-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #003344;
}

.member-bio {
  font-size: 0.95rem;
  color: #333;
}

@media (max-width: 600px) {
  .member-card {
    padding: 1rem;
  }
}
