/*
  Women First Morgantown Website
  Date: 2026-05-16
  Revision: 6.0

  Description:
  Card-first one-page design. The updated business card appears as the
  opening hero image, followed by website sections using matching plum,
  ivory, and champagne-gold styling.
*/

:root {
  --plum: #351046;
  --plum-dark: #23072f;
  --plum-soft: #6d4a76;
  --gold: #cfae5d;
  --gold-light: #efd68d;
  --cream: #f8f1e6;
  --cream-light: #fffaf2;
  --text: #2d1735;
  --muted: #6d6371;
  --shadow: rgba(52, 16, 70, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 241, 230, 0.96);
  border-top: 10px solid var(--plum-dark);
  border-bottom: 1px solid var(--gold);
  backdrop-filter: blur(8px);
}

.nav {
  max-width: 1300px;
  margin: auto;
  padding: 16px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  color: var(--plum);
  font-size: 2rem;
}

.brand span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--plum);
  text-decoration: none;
  font-size: 1rem;
}

.nav-links a:hover {
  color: var(--gold);
}

.menu-button {
  display: none;
  background: var(--plum);
  color: white;
  border: none;
  border-radius: 24px;
  padding: 10px 16px;
  cursor: pointer;
}

.card-hero {
  min-height: calc(100vh - 86px);
  padding: 36px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at bottom right, rgba(207, 174, 93, 0.22), transparent 28%),
    linear-gradient(180deg, var(--cream), var(--cream-light));
}

.card-frame {
  width: min(94vw, 1400px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 70px var(--shadow);
  border: 1px solid rgba(207, 174, 93, 0.55);
  background: var(--cream-light);
}

.card-frame img {
  display: block;
  width: 100%;
  height: auto;
}

section {
  padding: 90px 24px;
}

.section-inner {
  max-width: 1150px;
  margin: auto;
}

.welcome {
  background:
    radial-gradient(circle at bottom right, rgba(207, 174, 93, 0.18), transparent 30%),
    var(--cream-light);
  text-align: center;
}

.lotus {
  color: var(--gold);
  font-size: 2.4rem;
  margin-bottom: 16px;
}

h1 {
  color: var(--plum);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: normal;
  line-height: 1;
  margin-bottom: 18px;
}

h2 {
  color: var(--plum-soft);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: normal;
  margin-bottom: 24px;
}

.welcome p {
  max-width: 700px;
  margin: 0 auto 36px;
  font-size: 1.25rem;
  color: var(--muted);
  font-style: italic;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  border-radius: 32px;
  padding: 14px 28px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.25s ease;
}

.primary {
  background: var(--plum);
  color: white;
  border: 1px solid var(--plum);
}

.primary:hover {
  background: var(--gold);
  color: var(--plum);
  border-color: var(--gold);
}

.secondary {
  color: var(--plum);
  border: 1px solid var(--gold);
}

.secondary:hover {
  background: var(--gold);
}

.about {
  background: var(--cream);
}

h3 {
  text-align: center;
  color: var(--plum);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: normal;
}

.gold-line {
  width: 130px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 48px;
}

.content-card {
  background: white;
  border: 1px solid rgba(207, 174, 93, 0.45);
  border-radius: 30px;
  padding: 50px;
  text-align: center;
  font-size: 1.25rem;
  box-shadow: 0 18px 45px rgba(52, 16, 70, 0.10);
}

.services {
  background: var(--cream-light);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: white;
  border: 1px solid rgba(207, 174, 93, 0.42);
  border-radius: 26px;
  padding: 34px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(52, 16, 70, 0.08);
}

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

.service-icon {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 12px;
}

.service-card h4 {
  color: var(--plum);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.contact {
  color: white;
  background: linear-gradient(180deg, var(--plum), var(--plum-dark));
}

.contact h3 {
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-box,
.contact-form {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(207, 174, 93, 0.5);
  border-radius: 30px;
  padding: 36px;
}

.contact-box p {
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.contact-box strong {
  color: var(--gold-light);
}

.contact a {
  color: white;
  text-decoration: none;
}

.contact a:hover {
  color: var(--gold-light);
}

.contact-form {
  display: grid;
  gap: 15px;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(207, 174, 93, 0.55);
  border-radius: 18px;
  padding: 15px;
  background: var(--cream-light);
  color: var(--text);
  font-size: 1rem;
  font-family: Arial, sans-serif;
}

textarea {
  min-height: 145px;
  resize: vertical;
}

footer {
  background: var(--plum-dark);
  color: white;
  text-align: center;
  padding: 26px;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--cream-light);
    border-bottom: 1px solid var(--gold);
    padding: 22px;
    flex-direction: column;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .brand {
    font-size: 1.55rem;
  }

  .card-hero {
    min-height: auto;
    padding: 24px 12px;
  }

  .card-frame {
    width: 100%;
    border-radius: 10px;
  }

  .service-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .content-card {
    padding: 34px 24px;
  }
}
