Template:LandingPage/styles.css

From Arms of Venus
.aov-landing {
  color: #333;
}

.aov-hero {
  position: relative;
  min-height: 34rem;
  display: flex;
  align-items: end;
  padding: 0;
  border-bottom: 5px solid rgba(255, 255, 255, 0.75);
}

.aov-hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 2rem 2rem;
}

.aov-kicker {
  display: inline-block;
  background: rgba(255, 255, 255, 0.78);
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  padding: 0.8rem 1rem;
  border-radius: 0.5rem 0.5rem 0 0;
}

.aov-hero h1 {
  margin: 1rem 0 0.5rem 0;
  color: #fff;
  font-size: 3rem;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.aov-tagline {
  max-width: 56rem;
  margin: 0 0 1.5rem 0;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.7;
  background: rgba(255, 255, 255, 0.16);
  padding: 1rem 1.2rem;
  border-radius: 0.5rem;
}

.aov-quickfacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.aov-pill {
  display: inline-block;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.aov-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.aov-button {
  display: inline-block;
  background: #0073a4;
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.9rem 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.aov-button a {
  color: inherit;
  text-decoration: none;
}

.aov-button-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: #333;
}

.aov-mainpanel {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 10px 5px 0 rgba(0, 0, 0, 0.35);
}

.aov-stack {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.aov-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.aov-widget {
  margin-top: 1.25rem;
  font-size: 0.95rem;
}

.aov-widget-title {
  border-bottom: 3px solid #0073a4;
  color: #333;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding-bottom: 0.35rem;
}

.aov-widget-content {
  margin-top: 0;
  background: rgba(243, 243, 243, 0.72);
  padding: 1.5rem;
  line-height: 1.9;
  color: #4b4b4b;
}

.aov-widget-content h1,
.aov-widget-content h2,
.aov-widget-content h3 {
  color: #000;
  font-weight: 100;
}

.aov-widget-content ul {
  margin: 0;
  padding-left: 1.25rem;
}

.aov-muted {
  color: #666;
}

.aov-devband {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 5px solid #0073a4;
}

.aov-devband-title {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  color: #0073a4;
  margin-bottom: 0.25rem;
}

@media (max-width: 1024px) {
  .aov-grid {
    grid-template-columns: 1fr;
  }

  .aov-hero h1 {
    font-size: 2.2rem;
  }

  .aov-tagline {
    font-size: 1.05rem;
  }
}

@media (max-width: 640px) {
  .aov-hero-inner,
  .aov-stack {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .aov-hero {
    min-height: 26rem;
  }

  .aov-hero h1 {
    font-size: 1.7rem;
    letter-spacing: 0.08em;
  }

  .aov-tagline {
    padding: 0.8rem;
  }

  .aov-button {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}