/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #FAF8F4;
  color: #0B2545; /* Navy Dark */
  line-height: 1.7;
  font-size: 1rem;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Navbar */
.navbar {
  background-color: #0B2545;
  color: #F4EBD9; /* Champagne */
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 1.5px;
  color: #F4EBD9;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav-links li a {
  color: #F4EBD9;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 6px 12px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 6px;
}
.nav-links li a:hover,
.nav-links li a.active {
  background-color: #D4AF37; /* Gold */
  color: #0B2545;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #F4EBD9;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: 60px;
}
.hero-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #0B2545;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.hero-section .subtitle {
  font-size: 1.2rem;
  color: #7E6B50; /* Soft beige */
  font-weight: 500;
}

/* Profile Section */
.profile-section,
.legal-section,
.history-section {
  margin-bottom: 50px;
}
.profile-section h2,
.legal-section h2,
.history-section h2,
.vision-mission-section h2,
.management-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #D4AF37;
  margin-bottom: 20px;
  letter-spacing: 1.2px;
}
.profile-section p,
.legal-section p,
.history-section p {
  font-size: 1.1rem;
  color: #0B2545;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Vision & Mission */
.vision-mission-section {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.vision-mission-section > div {
  flex: 1;
}
.vision-mission-section h2 {
  margin-bottom: 15px;
}
.vision-mission-section p,
.vision-mission-section ul {
  font-size: 1.1rem;
  color: #0B2545;
  line-height: 1.7;
}
.vision-mission-section ul {
  list-style-type: disc;
  padding-left: 20px;
}
.vision-mission-section ul li {
  margin-bottom: 10px;
}

/* Management Section */
.management-section {
  margin-bottom: 60px;
  text-align: center;
}
.management-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.person-card {
  background-color: #F4EBD9;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 250px;
  padding: 20px;
  transition: transform 0.3s ease;
}
.person-card:hover {
  transform: translateY(-10px);
}
.person-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  object-fit: cover;
  height: 280px;
}
.person-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #0B2545;
  margin-bottom: 5px;
}
.person-card p {
  font-weight: 600;
  color: #7E6B50;
}

/* Footer */
footer {
  background-color: #0B2545;
  color: #F4EBD9;
  text-align: center;
  padding: 25px 10px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 900px) {
  .vision-mission-section {
    flex-direction: column;
    gap: 40px;
  }
  .management-grid {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #0B2545;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 20px 0;
    border-radius: 0 0 10px 10px;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li a {
    padding: 15px 20px;
    font-size: 1.2rem;
  }
  .nav-toggle {
    display: block;
  }
}
