
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: "Bahnschrift", "Segoe UI", sans-serif;
  background-color: #f4f4f4;
  color: #222;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1e1e2f;
  padding: 15px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo {
  color: #ffffff;
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 1px;
  height: 65px;
  width: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.logo img {
  height: 100%;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.nav-links li a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background-color: #8D99AE;
  transition: width 0.3s;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.nav-links li a:hover {
  color: #8D99AE;
}

.nav-links li a:hover::after {
  width: 100%;
}


main {
  max-width: 1100px;
  margin: 3rem auto;
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

section {
  margin-bottom: 60px;
}

h1 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 2.5rem;
  color: #2B2D42;
  margin-bottom: 1.5rem;
  text-align: center;
}

h2 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 2rem;
  color: #2B2D42;
  margin-bottom: 1rem;
  border-left: 4px solid #EF233C;
  padding-left: 10px;
}

h3 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  color: #EF233C;
  margin-bottom: 0.5rem;
}


p, li, figcaption {
  font-family: "Bahnschrift", "Segoe UI", sans-serif;
  font-size: 1rem;
  color: #333;
}


ul {
  list-style-type: square;
  margin-left: 40px;
  margin-top: 10px;
}

figure {
  margin: 30px auto;
  text-align: center;
  max-width: 700px;
}

figure img {
  width: 100%;
  max-width: 700px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

figcaption {
  font-size: 0.9em;
  color: #555;
  margin-top: 8px;
  font-style: italic;
}

#timeline {
  position: relative;
  margin-top: 40px;
  padding-left: 30px;
}

#timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #EF233C;
}

.event {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}

.event::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 15px;
  height: 15px;
  background-color: #EF233C;
  border-radius: 50%;
  border: 2px solid white;
}


footer {
  background-color: #222;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  font-family: "Bahnschrift", "Segoe UI", sans-serif;
}
