/* Modern, clean, and responsive styles for Atlas Creator Network */
body {
  margin: 0;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  background: linear-gradient(135deg, #f7f9fb 0%, #e3e9f7 40%, #f7e6d4 100%);
  color: #222;
}

header {
  background: linear-gradient(90deg, #1e3c72 0%, #2a5298 40%, #e94e1b 100%);
  color: #fff;
  padding: 2rem 0 1.5rem 0;
  box-shadow: 0 2px 8px rgba(30,60,114,0.08);
  position: relative;
  text-align: left;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

header .site-logo {
  position: static;
  top: unset;
  left: unset;
  margin-right: 0.5rem;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(30,60,114,0.13);
  background: #fff;
  border: 2px solid #1e3c72;
  padding: 2px;
  transition: transform 0.18s;
  z-index: 10;
}

header h1 {
  margin: 0;
  font-size: 2.2rem;
  letter-spacing: 2px;
  color: #fff;
}

nav {
  margin-top: 0;
  background: linear-gradient(90deg, #fff 60%, #e3e9f7 100%);
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(30,60,114,0.10);
  padding: 0.5rem 1.5rem;
  width: fit-content;
  align-items: center;
  display: flex;
  gap: 2rem;
}

nav a {
  color: #1e3c72;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 0.4rem 1.1rem;
  border-radius: 20px;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.5px;
}

nav a:hover, nav a:focus {
  background: linear-gradient(90deg, #e94e1b 0%, #1e3c72 100%);
  color: #fff;
}

section {
  max-width: 900px;
  margin: 2.5rem auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(30,60,114,0.07);
  padding: 2.5rem 2rem;
}

section h2 {
  margin-top: 0;
  color: #1e3c72;
  font-size: 2rem;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  flex: 1 1 250px;
  background: linear-gradient(135deg, #f0f4fa 60%, #f7e6d4 100%);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 1px 4px rgba(30,60,114,0.04);
  border: 2px solid #e94e1b22;
}

.feature h3 {
  margin-top: 0;
  color: #e94e1b;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form input, .contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #cfd8dc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  border: none;
  padding: 0.9rem;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button:hover {
  background: linear-gradient(90deg, #2a5298 0%, #1e3c72 100%);
}

footer {
  text-align: center;
  color: #888;
  padding: 2rem 0 1rem 0;
  font-size: 1rem;
  background: linear-gradient(90deg, #e3e9f7 0%, #f7e6d4 100%);
}

.team-section {
  margin-bottom: 2.5rem;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #f0f4fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1rem;
  box-shadow: 0 1px 4px rgba(30,60,114,0.04);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e94e1b;
}

.team-info {
  flex: 1;
}

.team-info h4 {
  margin: 0 0 0.5rem 0;
  color: #1e3c72;
}

.about-me {
  margin: 0.5rem 0 1rem 0;
  color: #444;
}

.join-link {
  display: inline-block;
  background: linear-gradient(90deg, #1e3c72 0%, #e94e1b 100%);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}

.join-link:hover {
  background: linear-gradient(90deg, #e94e1b 0%, #1e3c72 100%);
}

@media (max-width: 900px) {
  .header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 0 0.5rem;
  }
  nav {
    align-self: flex-end;
  }
}

@media (max-width: 700px) {
  section {
    padding: 1.2rem 0.5rem;
  }
  .features {
    flex-direction: column;
    gap: 1.2rem;
  }
  nav {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 0.5rem;
  }
  header .site-logo {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    padding: 1px;
  }
}
