/* ================================
   VoicePetition.com Stylesheet
   ================================ */

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

/* Layout Containers */
.wrap {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background: rgba(248, 249, 251, 0.95);
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 0;

  position: sticky;

  top: 0;

  z-index: 1000;

  backdrop-filter: saturate(120%) blur(6px);

  -webkit-backdrop-filter: saturate(120%) blur(6px);

  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  width: 200px;        /* enlarged logo size */
  height: auto;
  transition: all 0.2s ease-in-out;
}

@media (min-width: 1024px) {
  .logo img {
    width: 175px;      /* slightly larger for desktop */
  }
}

/* Navigation */
.nav a {
  text-decoration: none;
  color: #0053a0;
  font-weight: 600;
  margin: 0 12px;
  transition: color 0.2s ease-in-out;
}

.nav a:hover {
  color: #478bb2;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #0053a0;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin: 5px;
  transition: background 0.3s ease-in-out;
}

.btn:hover {
  background: #296bc7;
}

.btn.ghost {
  background: transparent;
  color: #0053a0;
  border: 2px solid #0053a0;
}

.btn.ghost:hover {
  background: #0053a0;
  color: #fff;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 0 40px;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: #003d75;
}

.hero .lead {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #333;
}

/* Sections */
.section {
  padding: 40px 0;
}

.section h2 {
  font-size: 1.8rem;
  color: #003d75;
  margin-bottom: 15px;
  text-align: left;
}

.section p,
.section li {
  font-size: 1rem;
  color: #333;
}

.bullets {
  list-style-type: disc;
  padding-left: 25px;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.columns div {
  flex: 1;
  min-width: 250px;
  padding: 10px;
}

/* Footer */
.site-footer {
  background: #003d75;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  margin-top: 40px;
}

.site-footer p {
  font-size: 0.9rem;
  margin: 5px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
  }

  .nav {
    margin-top: 10px;
  }

  .logo img {
    width: 160px;
  }
}

/* === Additions for Why VoicePetition Works cards === */
.card {
  background: #f8f9fb;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}

/* Optional: add spacing between columns on wide screens */
.columns {
  gap: 20px;
}

/* Optional: a utility for the narrower sections used on index */
.narrow-section {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 20px;
}
   /* ===== Contact form styles (match sponsor form look & feel) ===== */
.contact-form .form-row { margin-bottom: 16px; }
.contact-form label.form-label {
  display: block; margin: 6px 0 8px; font-weight: 600; color: #444;
}
.contact-form .form-input, .contact-form .form-textarea {
  width: 100%; padding: 14px; font-size: 16px;
  border: 1px solid #ccc; border-radius: 6px; box-sizing: border-box;
  background: #fff;
}
.contact-form .form-input { height: 48px; }
.contact-form .form-input:focus, .contact-form .form-textarea:focus {
  outline: none; border-color: #0053a0; box-shadow: 0 0 0 3px rgba(0,83,160,0.12);
}
.contact-form .fineprint { font-size: 0.9rem; color: #666; margin-top: 10px; }
      /* ===== Skip Remaining Calls Button ===== */
.skip-btn {
  background-color: #e0e8f8;
  color: #0056b3 !important;
  font-size: 0.82rem;           /* ~13px */
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
  border: 1px solid #0056b3;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;            /* pushes it to the right in a flex container */
  white-space: nowrap;          /* keeps the text on one line */
}

.skip-btn:hover {
  background-color: #0056b3;
  color: #ffffff !important;
}

/* ?? Responsive: hide skip button on very small screens */
@media (max-width: 480px) {
  .skip-btn {
    display: none;
  }
}
 