/* Overall layout */
body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  margin: auto;
  font-family: Arial, sans-serif;
  /* Centered green background */
  background: linear-gradient(to bottom, #e8f5e9, #a5d6a7);
  color: #222;
}

/* Header styling */
header {
  width: 100%;
  text-align: center;
  padding: 1.5em 0;
  background: #c8e6c9;
  border-bottom: 3px solid #2e7d32;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#title {
  color: #1b5e20;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  text-shadow: 1px 1px 2px #3333333a;
}

/* Navigation styling */
nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

nav li {
  list-style: none;
  margin: 0.5em 1em;
}

/* 5 hyperlink states */
nav a {
  text-decoration: none;
  color: #1b5e20;
  padding: 6px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
nav a:link { color: #1b5e20; }
nav a:visited { color: #2e7d32; }
nav a:hover { background-color: #388e3c; color: #fff; }
nav a:focus { outline: 2px solid #4caf50; }
nav a:active { color: #81c784; }

/* Main flex section */
#main {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 1em;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

/* Reordered columns (Featured Runner on left) */
.column3 { order: 1; flex: 1; padding: 15px; border-right: 1px solid #a5d6a7; }
.column2 { order: 2; flex: 2; padding: 15px; border-right: 1px solid #a5d6a7; }
.column1 { order: 3; flex: 1; padding: 15px; }

h2 {
  text-align: center;
  text-decoration: underline;
  font-family: "Poppins", sans-serif;
  color: #2e7d32;
}

/* Images in main section */
#main img {
  display: block;
  margin: 0 auto 1em;
  max-width: 70%; /* smaller than full width */
  height: auto;
  border-radius: 6px;
}

p {
  text-align: justify;
  line-height: 1.6;
  font-size: 0.95em;
}

/* Footer flexbox */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #c8e6c9;
  padding: 1em 2em;
  margin-top: 1em;
  border-top: 3px solid #2e7d32;
  flex-wrap: wrap;
}

footer a {
  text-decoration: none;
  color: #1b5e20;
}

footer .social img {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

footer .social img:hover {
  transform: scale(1.1);
}

/* Responsive design */
@media (max-width: 1000px) {
  body { width: 100%; }
}

@media (max-width: 700px) {
  #main {
    flex-direction: column;
  }
  .column1, .column2, .column3 {
    border: none;
    padding: 0;
  }
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .social {
    margin-top: 10px;
  }
}
