/* ============================================
   RatedHer — Multi-Page Styles
   Uses existing design tokens from styles.css
   Do NOT modify styles.css — all new styles here
   ============================================ */

/* PAGE NAVIGATION (extends existing header) */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* PAGE HERO (sub-pages) */
.page-hero {
    position: relative;
    padding: 8rem 5% 4rem;
    background: #2C2C2C;
    text-align: center;
}

/* Fix: index hero clipping under fixed header (header height ~70px) */
.coming-soon {
    padding-top: 80px;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

/* BLACK-AND-WHITE ATHLETE PHOTOGRAPHY */
.page-photo-wrap {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 5%;
}

.page-photo {
    display: block;
    width: 100%;
    height: clamp(220px, 34vw, 420px);
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
    border-radius: 4px;
}

.home-photo-band {
    margin: 0;
    line-height: 0;
    overflow: hidden;
}

.home-photo-band img {
    display: block;
    width: 100%;
    height: clamp(260px, 36vw, 520px);
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
}

/* PAGE CONTENT WRAPPER */
.page-content {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.page-content-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 5%;
}

/* SECTION SPACING */
.section {
    margin-bottom: 4rem;
}

.section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

/* Requested donation-page heading color */
.donate-section-title {
    color: var(--accent-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 300;
}

.section-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* CARD GRID */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* VALUE CARDS (About page) */
.value-card {
    text-align: center;
    border-top: 3px solid #ffe2ff;
}

.value-card .value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* DONATION CARDS */
.donation-card {
    border-top: 3px solid var(--accent-color);
}

.donation-card h3 {
    color: var(--accent-color);
}

/* SPONSORSHIP CARDS */
.sponsor-card {
    border-top: 3px solid #ffe2ff;
}

.sponsor-card .sponsor-tier {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.5rem;
}

.sponsor-benefits {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.sponsor-benefits li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sponsor-benefits li:last-child {
    border-bottom: none;
}

.sponsor-benefits li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: 700;
    margin-right: 0.75rem;
}

/* RESOURCE LIST */
.resource-list {
    list-style: none;
    padding: 0;
}

.resource-list li {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.resource-list li:last-child {
    border-bottom: none;
}

.resource-list li::before {
    content: '→';
    color: #ffe2ff;
    font-weight: 700;
    margin-right: 0.75rem;
}

/* CTA SECTION */
.cta-section {
    background: #2C2C2C;
    padding: 4rem 5%;
    text-align: center;
    margin-top: 2rem;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* CONTACT FORM */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--primary-color);
    background: #fff;
    transition: border-color 0.3s ease;
}

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

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

.form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #ffe2ff;
    color: #3D3D3D;
    border: none;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: #ffccee;
    transform: translateY(-2px);
}

/* CONTACT INFO BLOCK */
.contact-info {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffe2ff;
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}

/* EVENTS LIST */
.event-category {
    margin-bottom: 3rem;
}

.event-category h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffe2ff;
}

.event-category p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.event-topics {
    list-style: none;
    padding: 0;
}

.event-topics li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: #555;
}

.event-topics li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: 700;
    margin-right: 0.75rem;
}

/* VOLUNTEER NOTE */
.volunteer-note {
    background: rgba(255, 226, 255, 0.3);
    border-left: 4px solid #ffe2ff;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    border-radius: 0 4px 4px 0;
}

.volunteer-note p {
    margin: 0;
    color: #444;
    font-style: italic;
}

/* TWO COLUMN LAYOUT */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* HIGHLIGHT TEXT */
.highlight-text {
    color: var(--accent-color);
    font-weight: 600;
}

/* FOOTER FIX — make footer text readable on white bg (original styles.css uses --text-light/white on white) */
.footer-section p,
.footer-contact p,
.footer-bottom p {
    color: var(--primary-color);
}

.footer-logo-text {
    color: var(--primary-color) !important;
}

.nonprofit-status {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #ffe2ff;
        padding: 1rem 5%;
        gap: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: block;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}