/* ==========================
   ArtGuard Unified CSS

========================== */

/* ==========================
   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 */
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
}

/* ==========================
   Header & Navigation
========================== */
header {
  background-color: #fff;
  border-bottom: 2px solid #800020; /* Burgundy */
  padding: 15px 20px;
  text-align: center;
}

header img.logo {
  width: 150px;
  height: auto;
  vertical-align: middle;
  margin-bottom: 10px;
}

header h1 {
  display: block;
  color: #000065; /* Navy Blue */
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.top-nav {
  font-weight: 500;
  margin-bottom: 10px;
}

.top-nav a {
  text-decoration: none;
  color: #800020; /* Burgundy */
  margin: 0 12px;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.top-nav a:hover {
  color: #000065;
}

/* ==========================
   Main Sections
========================== */
main {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto;
}

.section {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section h2 {
  color: #800020;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.subheading {
  font-weight: bold;
  color: #000065;
  margin-top: 15px;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.section p {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.55;
}

.highlight-box {
  background-color: #EAE2F8;
  padding: 15px;
  margin: 15px 0;
  border-left: 5px solid #800020;
  border-radius: 6px;
  font-weight: bold;
}

/* ==========================
   Buttons
========================== */
button, .btn {
  background-color: #800020;
  color: #F0E2E6;
  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;
}

/* ==========================
   Footer
========================== */
footer {
  text-align: center;
  padding: 15px;
  margin-top: 30px;
  border-top: 2px solid #800020;
  font-size: 0.9rem;
  color: #555;
  background-color: #fff;
}

/* ==========================
   Team Page
========================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.member {
  background-color: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #ddd;
}

.member h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.member p {
  font-size: 0.98rem;
  line-height: 1.5;
  text-align: left;
}

.role {
  font-weight: bold;
  font-style: italic;
  display: block;
  margin-bottom: 8px;
  color: #333;
}

/* ==========================
   Images in Sections
========================== */
section img {
  max-width: 100%;
  display: block;
  margin: 15px 0;
  border-radius: 8px;
}

/* ==========================
   Responsive
========================== */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .top-nav a {
    display: block;
    margin: 5px 0;
  }
}