/* RESET + GENERAL */
body {
  background-color: rgb(31, 113, 175);
  margin: 0;
  padding: 0;
  font-family: 'Space Grotesk', sans-serif;
  color: white;
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Staatliches', sans-serif;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.75rem;
}

p {
  font-size: 1rem;
  max-width: 700px;
  margin-bottom: 15px;
}

/* HEADER + NAVIGATION */
header {
  background-color: black;
  color: white;
}

nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  list-style: none;
  margin: 0;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.links img {
  height: 40px;
  cursor: pointer;
}

/* TITLE */
.about_title {
  display: flex;
  justify-content: center;
  margin: 20px auto;
  width: fit-content;
}

.about_title img {
  width: 250px;
  display: block;
  filter: drop-shadow(0 10000px #d18813);
  transform: translateY(-10000px);
}

/* MAIN ABOUT SECTIONS */
.about_container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  gap: 60px;
}

.about_section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about_section.reverse {
  flex-direction: row-reverse;
}

.about_text {
  flex: 1 1 50%;
  text-align: left;
}

.about_image_wrapper {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.about_image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* FOOTER */
footer {
  background-color: black;
  padding: 20px;
  text-align: center;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .about_section,
  .about_section.reverse {
    flex-direction: column;
    text-align: center;
  }

  .about_text,
  .about_image_wrapper {
    flex: 1 1 100%;
  }

  .about_text {
    text-align: center;
  }

    .about_text img {
    width: 200px;
  }
   .logo img {
    height: 40px;
  }

  .links img {
    height: 30px;
  }
}
