body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background-color: #f9f9f9;
  color: #1e1e1e;
}

h1, h2, h3 {
  margin: 0;
}

.hero {
  background: url('../assets/sydney_marathon_pic.webp') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 3rem;
  border-radius: 10px;
  max-width: 90%;
}

.subtitle {
  font-size: 1.3rem;
  margin-top: 1rem;
}

.countdown {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1rem;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: #5096d3;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s;
}
.cta-button:hover {
  background:  #2e78ba;
}

/* Main */
main {
  padding: 3rem 2rem;
}

.info {
  text-align: center;
  margin-bottom: 2rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

footer {
  text-align: center;
  padding: 2rem;
  background: #eeeeee;
  font-size: 0.9rem;
}

.profile-setup {
  background: #ffffff;
  padding: 3rem 2rem;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.profile-setup h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.runner-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
}

.sex-options {
  display: flex;
  gap: 2rem;
  padding-top: 0.5rem;
}

.sex-options label {
  font-weight: normal;
}

.team {
  padding: 4rem 2rem;
  background-color: #f5f5f5;
  text-align: center;
  color: #333;
}

.team h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.member {
  max-width: 250px;
}

.image-wrapper {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #002D72;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.profile-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; 
}

.member h4 {
  margin: 0.5rem 0;
  font-size: 1.25rem;
  color: #002D72;
}

.member p {
  font-size: 0.95rem;
  line-height: 1.4;
}

.linkedin-link {
  display: inline-block;
  margin-top: 0.5rem;
}

.linkedin-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.linkedin-icon:hover {
  transform: scale(1.2);
}


.jhu {
  padding: 2rem;
  text-align: center;
  background-color: #fff;
}

.jhu-logo {
  max-width: 90%;
  width: 600px;
  height: auto;
}

.member a {
  color: #002D72;
  text-decoration: underline;
}

.member a:hover {
  text-decoration: none;
  color: #2e78ba;
}
