/* ==========================
   Reset & Base Styles
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #F0E2E6; /* Lavender Blush background */
  color: #333;
  line-height: 1.6;
}

/* ==========================
   Header & Navigation
========================== */
header {
  background-color: #fff;
  border-bottom: 2px solid #800020; /* Burgundy line under header */
  padding: 15px 20px;
  text-align: center;
}

header img.logo {
  height: 50px;
  vertical-align: middle;
  margin-right: 10px;
}

header h1 {
  display: inline;
  color: #000065; /* Navy Blue for logo/project name */
  font-size: 2rem;
  font-weight: bold;
  vertical-align: middle;
}

.top-nav {
  margin-top: 10px;
  font-weight: 500;
}

.top-nav a {
  text-decoration: none;
  color: #800020; /* Burgundy links */
  margin: 0 12px;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.top-nav a:hover {
  color: #000065; /* Navy hover effect */
}

.top-nav a.active {
  text-decoration: underline;
}

/* ==========================
   Main Content
========================== */
main {
  width: 90%;
  max-width: 1000px;
  margin: 30px auto;
}

section {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

section h2 {
  color: #800020; /* Burgundy headings */
  margin-bottom: 12px;
  font-size: 1.6rem;
}

section ul {
  margin-left: 20px;
  margin-top: 10px;
  line-height: 1.6;
}

section ul ul {
  margin-left: 20px; /* Nested list indentation */
}

section img {
  max-width: 100%;
  display: block;
  margin: 15px 0;
  border-radius: 8px;
}

/* ==========================
   Buttons
========================== */
button, .btn {
  background-color: #800020; /* Burgundy */
  color: #F0E2E6; /* Lavender Blush text */
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover, .btn:hover {
  background-color: #000065; /* Navy Blue hover */
}

/* ==========================
   Footer
========================== */
footer {
  text-align: center;
  padding: 15px;
  margin-top: 30px;
  border-top: 2px solid #800020; /* Burgundy line */
  font-size: 0.9rem;
  color: #555;
  background-color: #fff;
}

/* ==========================
   Team Page Grid
========================== */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.member {
  background-color: #F0E2E6;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  width: 220px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.member img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 10px;
}

.member h3 {
  color: #000065; /* Navy Blue for names */
  margin-bottom: 5px;
}

.member p {
  font-size: 0.95rem;
}

/* ==========================
   Responsive
========================== */
@media (max-width: 768px) {
  .team-grid {
    flex-direction: column;
    align-items: center;
  }

  .top-nav a {
    display: block;
    margin: 5px 0;
  }
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 1rem;
}

.contact-info a {
  color: #800020; /* Burgundy links */
  text-decoration: none;
}

.contact-info a:hover {
  color: #000065; /* Navy hover */
}

.contact-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
  max-width: 500px;
}

.contact-form button {
  margin-top: 10px;
  width: 150px;
  background-color: #800020;
  color: #F0E2E6;
}

.contact-form button:hover {
  background-color: #000065;
}
