/* Strong Steps for Seniors - Main Stylesheet */

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

body {
    font-family: 'Montserrat', sans-serif;
    color: #1F3A5F;
    line-height: 1.7;
    font-size: 18px;
}

/* Navigation */
nav {
    background: #1F3A5F;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
/* Logo in nav */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.logo-icon {
    height: 28px;          /* desktop default */
    width: auto;
    display: block;
    flex-shrink: 0;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #7FA08A;
}

.nav-links .donate-btn {
    background: #7FA08A;
    padding: 8px 20px;
    border-radius: 5px;
    color: white;
}

.nav-links .donate-btn:hover {
    background: #6a8f75;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1F3A5F 0%, #2d5278 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .tagline {
    font-size: 1.5em;
    color: #7FA08A;
    margin-bottom: 30px;
    font-weight: 500;
}

.hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

/* Buttons */
.btn {
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1em;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: #7FA08A;
    color: white;
}

.btn-primary:hover {
    background: #6a8f75;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #1F3A5F;
}

.btn-secondary:hover {
    background: #FAF7F0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section {
    margin-bottom: 60px;
}

h2 {
    font-size: 2.5em;
    color: #1F3A5F;
    margin-bottom: 30px;
    font-weight: 700;
    border-bottom: 4px solid #7FA08A;
    padding-bottom: 15px;
}

h3 {
    font-size: 1.8em;
    color: #1F3A5F;
    margin-bottom: 20px;
    font-weight: 600;
}

h4 {
    font-size: 1.3em;
    color: #1F3A5F;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

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

.card-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.card h3 {
    color: #1F3A5F;
    margin-bottom: 15px;
}

.card p {
    color: #1F3A5F;
    line-height: 1.8;
}

/* Impact Section */
.impact-section {
    background: #FAF7F0;
    padding: 80px 20px;
    text-align: center;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3em;
    font-weight: 700;
    color: #7FA08A;
    display: block;
}

.stat-label {
    font-size: 1.1em;
    color: #1F3A5F;
    margin-top: 10px;
}

/* Donation Tiers */
.donation-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.tier {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    border: 3px solid #7FA08A;
    transition: transform 0.3s;
}

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

.tier-amount {
    font-size: 2.5em;
    font-weight: 700;
    color: #7FA08A;
    margin-bottom: 15px;
}

.tier-description {
    font-size: 1.1em;
    color: #1F3A5F;
    margin-bottom: 25px;
}

/* Footer */
footer {
    background: #1F3A5F;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #7FA08A;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #7FA08A;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
}

/* Program Features */
.program-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature {
    background: #FAF7F0;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #7FA08A;
}

.feature h4 {
    color: #1F3A5F;
    margin-bottom: 10px;
    font-size: 1.3em;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 40px auto;
    background: #FAF7F0;
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1F3A5F;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #7FA08A;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1F3A5F;
}

/* About Page */
.about-content {
    background: #FAF7F0;
    padding: 40px;
    border-radius: 10px;
    margin: 30px 0;
    line-height: 1.9;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content ul {
    margin-left: 25px;
}

.about-content li {
    margin-bottom: 10px;
}

.highlight-box {
    background: white;
    padding: 30px;
    border-left: 5px solid #7FA08A;
    margin: 30px 0;
    border-radius: 5px;
}

.highlight-box p {
    line-height: 1.8;
}

/* Volunteer Benefits */
.volunteer-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.benefit {
    background: #FAF7F0;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.benefit-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.benefit h4 {
    margin-bottom: 10px;
}

/* Lists */
ul {
    line-height: 1.8;
}

li {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }
    
    .hero .tagline {
        font-size: 1.2em;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        gap: 15px;
        font-size: 0.9em;
    }
    
    h2 {
        font-size: 2em;
    }
    
    h3 {
        font-size: 1.5em;
    }
    
    .container {
        padding: 40px 20px;
    }
    
    .hero {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .hero h1 {
        font-size: 1.6em;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

.evidence-callout{
  border: 2px solid #2f5d50;            /* soft green */
  background: #f6fbf9;                  /* very light green tint */
  border-radius: 16px;
  padding: 18px 18px 14px;
  margin: 22px 0;
}

.evidence-callout h3{
  margin: 0 0 10px;
  color: #0b1f3b;                       /* navy */
  font-size: 1.15rem;
  letter-spacing: 0.2px;
}

.evidence-callout p{
  margin: 0 0 12px;
  color: #1a1a1a;
  line-height: 1.55;
}

.evidence-bullets{
  margin: 0 0 12px 18px;
  padding: 0;
}

.evidence-bullets li{
  margin: 8px 0;
  line-height: 1.45;
}

.evidence-sources{
  margin: 8px 0 0;
  font-size: 0.95rem;
  color: #394b63;
}

.evidence-sources a{
  color: #0b1f3b;                       /* navy */
  text-decoration: underline;
  text-underline-offset: 2px;
}

.citation-list li{
  margin: 12px 0;
  line-height: 1.5;
}

/* Contact Form Success Message */
.contact-success {
    margin-top: 25px;
    padding: 20px 25px;
    border-radius: 10px;
    background: #f6fbf9;            /* matches evidence callout */
    border-left: 5px solid #7FA08A; /* brand green */
    color: #1F3A5F;
    font-size: 1.05em;
    line-height: 1.6;
}

.contact-success strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1em;
}
/* Brand Kit Additions (paste into styles.css) */

/* Contact Form Success Message */
.contact-success {
    margin-top: 25px;
    padding: 20px 25px;
    border-radius: 10px;
    background: #f6fbf9;
    border-left: 5px solid #7FA08A;
    color: #1F3A5F;
    font-size: 1.05em;
    line-height: 1.6;
}

.contact-success strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1em;
}

nav .logo,
nav .logo span {
    text-decoration: none;
    color: #FFFFFF;
}


/*@media (max-width: 480px) {*/
/*    .logo span {*/
/*        display: none;*/
/*    }*/
/*}*/

/* Hero logo */
.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.hero-logo-img {
  width: min(720px, 92%);
  height: auto;
  display: block;
}

/* Footer logo */
.footer-logo {
    display: flex;
    align-items: flex-start;
}

.footer-logo-img {
    max-width: 220px;
    width: 100%;
    height: auto;
}

@media (max-width: 480px) {
    .footer-logo-img {
        max-width: 180px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .logo-icon {
        height: 24px;
    }

    .logo span {
        font-size: 0.95em;
    }
}

/* Phones */
@media (max-width: 480px) {
    .logo-icon {
        height: 22px;
    }

    .logo span {
        font-size: 0.85em;
    }
}

/* Hero logo container */
.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

/* Hero logo SVG scaling */
.hero-logo-img {
    width: 100%;
    max-width: 720px;   /* desktop cap */
    height: auto;
    display: block;
}

/* Tablet */
@media (max-width: 768px) {
    .hero-logo-img {
        max-width: 520px;
    }
}

/* Phones */
@media (max-width: 480px) {
    .hero-logo-img {
        max-width: 340px;
    }
}

/* Footer logo */
.footer-logo-img {
    width: 100%;
    max-width: 220px;   /* desktop */
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .footer-logo-img {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .footer-logo-img {
        max-width: 150px;
    }
}

img {
    max-width: 100%;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav-links li {
        white-space: nowrap;
    }
}

/* Mobile actions container (Donate + Menu) */
.nav-actions {
  display: none; /* hidden on desktop */
  align-items: center;
  gap: 10px;
}

/* Menu button */
.nav-toggle {
  background: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  border-radius: 8px;
  padding: 7px 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
}

/* Keep logo text white */
nav .logo, nav .logo span { color: #FFFFFF; }

/* Desktop-only Donate in the UL */
.desktop-only { display: list-item; }

/* Mobile layout */
@media (max-width: 768px) {
  .nav-actions { display: flex; }

  /* Hide the desktop Donate inside the list */
  .desktop-only { display: none; }

  /* Hide full nav by default */
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 12px;
    gap: 10px;
    padding: 12px 0;
  }

  /* When open */
  .nav-links.open {
    display: flex;
  }

  /* Make links easy to tap */
  .nav-links a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 12px;
    border-radius: 10px;
  }

  /* Optional: subtle hover background on mobile dropdown */
  .nav-links a:hover {
    background: rgba(255,255,255,0.08);
  }

  /* Ensure container can stack nicely */
  .nav-container {
    flex-wrap: wrap;
  }
}
nav .nav-actions .donate-btn:hover,
nav .nav-actions .donate-btn:focus {
    color: #FFFFFF;
    text-decoration: none;
}

/* Force Donate button text to white in navbar */
nav .nav-actions .donate-btn {
    color: #FFFFFF;
    text-decoration: none;
}
/* Very small phones: hide logo text (icon-only) */
/*@media (max-width: 480px) {*/
/*  .logo span { display: none; }*/
/*}*/
