/* styles.css for STEM is Your Future */

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #333;
}

header {
  background: #0176d3;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

header .logo img {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

nav ul li a.active {
  font-weight: bold;
  color: #ff6600; /* or your brand color */
  text-decoration: underline;
}

nav ul li {
  display: inline;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: linear-gradient(to bottom right, #0176d3, #33a1f2);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.5em;
  margin: 0;
}

.hero .tagline {
  font-size: 1.2em;
  margin-top: 10px;
  margin-bottom: 20px;
}

.cta-button {
  padding: 10px 25px;
  background: #f3b600;
  color: #000;
  border: none;
  font-size: 1em;
  text-decoration: none;
  border-radius: 5px;
}

.section {
  padding: 50px 20px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 20px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: white;
  border: 1px solid #ccc;
  padding: 20px;
  width: 250px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

form input[type="email"] {
  padding: 10px;
  font-size: 1em;
  width: 250px;
  margin-right: 10px;
}

form button {
  padding: 10px 20px;
  background: #0176d3;
  color: white;
  border: none;
  font-size: 1em;
  cursor: pointer;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px 10px;
}

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