/* Base Body Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

/* Header / Site-Nav */
header.site-nav nav {
  background: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

header.site-nav nav a {
  color: black;
  text-decoration: none;
  margin: 0 0.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 22px;
  font-weight: normal;
}

header.site-nav nav a.brand {
  font-weight: bold;
  margin-right: 1rem;
}

/* Bold Practice link */
header.site-nav nav a[href="/practice/"] {
  font-weight: bold;
}

/* Active and Hover States */
header.site-nav nav a.active,
header.site-nav nav a:hover {
  color: #ff9ea1;
}

/* Hero Section */
#hero {
  text-align: center;
  margin-bottom: 3rem;
}

#hero p {
  font-size: 1.2em;
  margin-top: 0.5rem;
}

/* About Section */
#about-merged {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1em;
  line-height: 1.6;
}

/* Big Image */
.big-image, .about-image {
  text-align: center;
  margin-bottom: 3rem;
}

.big-image img,
.about-image img {
  max-width: 50%;
  height: auto;
  border-radius: 8px;
}

/* Practice Modules */
#modules .cards {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

#modules .card {
  background: #f5f5f5;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  flex: 1 1 200px;
  max-width: 250px;
  transition: transform .2s;
}

#modules .card:hover {
  transform: translateY(-5px);
}

/* Header Fonts */
h1, h2, h3, h4, h5, h6 {
  font-family: Arial, sans-serif;
  font-weight: bold;
}
