/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
}

/* Header */
.lses-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #002855;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
}
.lses-header-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.lses-logo {
  height: 40px;
  width: auto;
  margin-right: 10px;
}
.lses-title {
  font-size: 20px;
  color: #ffffff;
  font-weight: bold;
}
.lses-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
}
.lses-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}
.lses-nav a:hover {
  color: #ffda44;
}
.lses-login-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.lses-login-btn {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid #ffffff;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}
.lses-login-btn:hover {
  background: #ffffff;
  color: #002855;
}

/* Offset Content */
.hero,
.content {
  padding-top: 80px;
}

/* Hero Section */
.hero {
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-media, .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  padding: 20px;
  background: rgba(0, 40, 85, 0.5);
  border-radius: 10px;
}
.hero-overlay h2 {
  font-size: 32px;
}
.hero-overlay p {
  font-size: 16px;
  margin-top: 10px;
}

/* Content Area */
.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Section Titles */
.section-about h2,
.section-leadership h2,
.section-events h2 {
  font-size: 28px;
  color: #002855;
  margin-bottom: 20px;
  text-align: center;
}

/* About */
.section-about {
  margin-bottom: 50px;
  text-align: center;
}
.section-about p {
  margin-bottom: 8px;
}

/* Leadership */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.card-person {
  background: #f9f9f9;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.person-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}
.card-person h3 {
  font-size: 18px;
}
.card-person .role {
  font-style: italic;
  color: #777;
  margin: 5px 0;
}
.card-person blockquote {
  font-size: 14px;
  color: #444;
  margin: 0;
}

/* Events */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.event-item h3 {
  font-size: 20px;
  color: #002855;
}
.event-item time {
  font-size: 14px;
  color: #777;
}
.event-item a {
  color: #007bff;
  text-decoration: none;
}
.event-item a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #002855;
  color: #ffffff;
  text-align: center;
  padding: 20px 10px;
}
.footer p {
  font-size: 14px;
  margin: 0;
}
.footer a {
  color: #ffda44;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .lses-header {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 15px 20px;
  }
  .lses-title {
    font-size: 18px;
  }
  .hero-overlay h2 {
    font-size: 24px;
  }
  .hero-overlay p {
    font-size: 14px;
  }
  .section-about h2,
  .section-leadership h2,
  .section-events h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hero-overlay {
    padding: 15px;
  }
  .lses-nav a, .lses-login-btn {
    font-size: 13px;
  }
  .card-person h3 {
    font-size: 16px;
  }
  .card-person blockquote {
    font-size: 12px;
  }
}
