/* Quarter Council — Neutral Grey Theme
   ------------------------------------
   - Background: #f5f5f5
   - Text: greys only
   - No color accents, all grayscale
*/

/* Global reset-ish */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f5f5f5;
  color: #333333;
}

/* Layout containers */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

/* Header + Nav */
header {
  background-color: #f5f5f5;
  border-bottom: 1px solid #dddddd;
}

nav {
  max-width: 960px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

nav h1 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #333333;
}

/* Nav links */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: #444444;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

nav a:hover {
  color: #111111;
  border-color: #555555;
}

/* Logo in header (right side) */
.qc-logo {
  height: 72px; /* large presence, but not obnoxious */
  width: auto;
  display: block;
}

/* Keep nav + logo aligned nicely on narrow screens */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hero section (homepage) */
.hero {
  background-color: #e9e9e9;
  border-radius: 10px;
  padding: 32px 24px;
  margin: 24px 0 32px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #777777;
  margin-bottom: 8px;
}

.hero h1 {
  font-size: 2.2rem;
  margin: 0 0 8px;
  color: #333333;
}

.hero-subtitle {
  max-width: 640px;
  font-size: 1.05rem;
  color: #555555;
  margin: 0 0 24px;
}

/* CTA button */
.qc-cta-button {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 999px;
  border: 1px solid #222222;
  background-color: #333333;
  color: #f5f5f5;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.qc-cta-button:hover {
  background-color: #111111;
  color: #f5f5f5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* Bio / card block */
.card {
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #dddddd;
  padding: 24px 22px;
  margin-bottom: 24px;
}

.card h2 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  color: #333333;
}

.card p {
  margin: 0 0 10px;
  font-size: 0.97rem;
  line-height: 1.7;
  color: #555555;
}

/* Small label-style heading */
.card-eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: #888888;
  margin-bottom: 6px;
}

/* List styling (if needed later) */
.card ul {
  margin: 10px 0 0 20px;
  padding: 0;
  color: #555555;
}

/* Form page styles */
.form-intro {
  margin: 20px 0 24px;
  color: #555555;
  font-size: 0.98rem;
}

form {
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #dddddd;
  padding: 24px 22px;
}

form label {
  display: block;
  margin-top: 12px;
  margin-bottom: 4px;
  font-size: 0.9rem;
  color: #444444;
}

form input,
form select {
  width: 100%;
  padding: 8px 9px;
  border-radius: 4px;
  border: 1px solid #cccccc;
  font-size: 0.95rem;
  background-color: #fafafa;
  color: #333333;
}

form input:focus,
form select:focus {
  outline: none;
  border-color: #888888;
  background-color: #ffffff;
}

/* Payment sections */
#wave-section,
#polygon-section,
#cash-section {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px dashed #dddddd;
}


#price-display {
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #444444;
}

/* Terms page content */
.terms-content h1,
.terms-content h2 {
  color: #333333;
}

.terms-content h1 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.terms-content h2 {
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 6px;
}

.terms-content p,
.terms-content li {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.7;
}

/* Footer + social icons */
footer {
  border-top: 1px solid #dddddd;
  padding: 16px 20px 20px;
  text-align: center;
  color: #777777;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 6px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon {
  width: 22px;
  height: 22px;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-link:hover .social-icon {
  opacity: 1;
  transform: translateY(-1px);
}

/* Small caption under footer if needed later */
.footer-note {
  margin-top: 4px;
  font-size: 0.8rem;
  color: #999999;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  nav {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-right {
    width: 100%;
    justify-content: flex-end;
    margin-top: 8px;
  }

  .qc-logo {
    height: 64px;
  }

  .hero {
    padding: 24px 18px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }
/* QuarterCouncil – Unified CTA Button */
.qc-cta {
  display: inline-block;
  padding: 12px 28px;
  background-color: #e6e6e6;     /* soft neutral grey */
  color: #444;                   /* dark grey text */
  border: 2px solid #888;        /* medium grey border */
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
}

/* Hover effect */
.qc-cta:hover {
  background-color: #d4d4d4;
  border-color: #666;
  color: #222;
}
/* NAVBAR WRAPPER */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e6e6e6;     /* soft neutral grey */
  padding: 12px 20px;
  border-bottom: 2px solid #bbb; 
}

/* NAV TITLE */
nav h1 {
  color: #333;
  font-size: 1.8rem;
  margin: 0;
  font-weight: 700;
}

/* NAV LINKS CONTAINER */
nav ul {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
}

/* INDIVIDUAL NAV BUTTONS */
nav ul li a {
  display: inline-block;
  padding: 8px 16px;
  background-color: #e0e0e0;   /* soft grey */
  border: 2px solid #999;      /* medium grey border */
  border-radius: 6px;
  color: #444;                 /* dark grey text */
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease-in-out;
}

/* Hover Effect */
nav ul li a:hover {
  background-color: #d4d4d4;
  border-color: #666;
  color: #222;
}
/* Fixed Logo in Navbar Corner */
.qc-corner-logo {
  height: 54px;           /* perfect balance */
  width: auto;
  object-fit: contain;

  position: absolute;
  top: 12px;
  right: 18px;

  background-color: #f5f5f5;  /* matches your neutral theme */
  padding: 4px;
  border-radius: 6px;         /* soft but professional */
}

/* Make room so text doesn’t collide with logo */
nav {
  position: relative;
  padding-right: 90px;  /* ensures nav text never overlaps the logo */
}

/* Mobile size adjustment */
@media (max-width: 640px) {
  .qc-corner-logo {
    height: 42px;
    top: 10px;
    right: 12px;
  }

  nav {
    padding-right: 70px;
  }
}
