* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f5f7fa;
  color: #1c1c1c;
  line-height: 1.6;
}

/* SMOOTH SCROLL + NAV OFFSET FIX */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* prevents navbar from cutting off sections */
}

/* NAVIGATION BAR */
.navbar {
  background: #0b1f3a;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 5px;
  transition: background 0.2s ease;
}

.navbar a:hover {
  background: #ff7a18;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0b1f3a, #102a4d);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.hero-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ff7a18;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.5rem;
}

.tagline {
  color: #ffb347;
  font-weight: 600;
}

.location {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* SECTIONS */
section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

h2 {
  color: #0b1f3a;
  margin-bottom: 15px;
  border-left: 5px solid #ff7a18;
  padding-left: 10px;
}

/* PROFILE */
.profile ul {
  list-style: none;
  background: white;
  padding: 20px;
  border-radius: 10px;
}

.profile li {
  margin-bottom: 10px;
}

/* METRICS SECTION */
.metrics {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0b1f3a;
}

.metrics span {
  color: #ff7a18;
}

/* CURRENT TEAM SECTION */
.team-info {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.team-info img {
  width: 120px;
  margin-bottom: 15px;
}

.team-info h3 {
  font-size: 1.5rem;
  color: #0b1f3a;
  margin-bottom: 10px;
}

.team-info p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff7a18;
}

/* SPOTLIGHT */
.spotlight {
  display: flex;
  gap: 20px;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.spotlight img {
  width: 45%;
  border-radius: 15px;
  object-fit: cover;
}

.spotlight-text h2 {
  color: #ff7a18;
  font-size: 1.8rem;
}

/* ACTION FEATURE */
.action-feature {
  display: flex;
  gap: 20px;
  align-items: center;
}

.action-feature-img img {
  width: 50%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.action-feature-text h2 {
  color: #0b1f3a;
  font-size: 1.8rem;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  object-fit: cover;
}

/* LINKS */
.links {
  text-align: center;
}

.buttons a {
  display: inline-block;
  margin: 10px;
  padding: 12px 20px;
  background: #ff7a18;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.buttons a:hover {
  background: #e6680f;
  transform: translateY(-3px);
}

/* FOOTER */
footer {
  background: #0b1f3a;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}
