/**
 * Lake City Ultrabots Team 8041 - Support Our Team Page Styles
 * Dark theme throughout. Tab panels controlled by donate.js.
 */

:root {
    --pulse-glow-color: rgba(204, 0, 0, 0.7);
}

/* ─── Tab panel hide ────────────────────────────────────────────────────────── */
.tab-panel[hidden] {
    display: none !important;
}

/* ─── Section intro ─────────────────────────────────────────────────────────── */
.section-intro {
    text-align: center;
    margin-bottom: 30px;
}
.section-intro h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: var(--primary, #CC0000);
    font-weight: 700;
}
.section-intro p {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.55);
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.6;
}

@media (min-width: 769px) {
    .section-intro { margin-bottom: 40px; }
    .section-intro h2 { font-size: 2.4em; margin-bottom: 15px; }
    .section-intro p { font-size: 1.15em; max-width: 750px; }
}

/* ─── Impact section ────────────────────────────────────────────────────────── */
.impact-section {
    padding: 60px 0;
    background-color: #111;
}
.impact-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
}
.impact-text h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: white;
    border-bottom: 3px solid var(--primary, #CC0000);
    padding-bottom: 8px;
    display: inline-block;
}
.impact-list {
    list-style: none;
    padding-left: 0;
    line-height: 1.7;
}
.impact-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}
.impact-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--primary, #CC0000);
    font-weight: bold;
}
.impact-highlight {
    font-weight: 600;
    color: white;
}
.impact-testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-left: 4px solid var(--primary, #CC0000);
    border-radius: 0 8px 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.impact-testimonial blockquote {
    margin: 0;
    padding: 15px 20px;
    position: relative;
}
.impact-testimonial blockquote p {
    position: relative;
    z-index: 1;
    font-size: 1em;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}
.impact-testimonial blockquote cite {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    font-style: normal;
}
@keyframes pulseQuote {
    0% { opacity: 0.1; } 50% { opacity: 0.35; } 100% { opacity: 0.1; }
}
.impact-testimonial blockquote::before,
.impact-testimonial blockquote::after {
    position: absolute;
    font-family: Georgia, serif;
    font-size: 4em;
    color: rgba(204, 0, 0, 0.2);
    line-height: 1;
    z-index: 0;
    animation: pulseQuote 3s ease-in-out infinite;
}
.impact-testimonial blockquote::before { content: '\201C'; top: -10px; left: -5px; }
.impact-testimonial blockquote::after  { content: '\201D'; bottom: -10px; right: -5px; animation-delay: 1.5s; }

@media (min-width: 769px) {
    .impact-section { padding: 70px 0; }
    .impact-content { flex-direction: row; gap: 40px; }
    .impact-text { flex: 1 1 55%; min-width: 320px; }
    .impact-text h3 { font-size: 1.7em; margin-bottom: 20px; padding-bottom: 10px; }
    .impact-list li { margin-bottom: 18px; padding-left: 30px; font-size: 1rem; }
    .impact-testimonial { flex: 1 1 40%; min-width: 300px; padding: 35px; }
    .impact-testimonial blockquote { padding: 20px 40px; }
    .impact-testimonial blockquote p { font-size: 1.1em; line-height: 1.7; margin-bottom: 20px; }
    .impact-testimonial blockquote::before,
    .impact-testimonial blockquote::after { font-size: 6em; }
    .impact-testimonial blockquote::before { top: -15px; left: -10px; }
    .impact-testimonial blockquote::after  { bottom: -15px; right: -10px; }
}

/* ─── Sponsorship section ───────────────────────────────────────────────────── */
.sponsorship-section-v2 {
    padding: 60px 0;
    background-color: #1a1a1a;
}
.sponsorship-section-v2 .sponsorship-header {
    text-align: center;
    margin-bottom: 30px;
}
.sponsorship-section-v2 .sponsorship-header h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: var(--primary, #CC0000);
    font-weight: 700;
}
.sponsorship-section-v2 .sponsorship-header p {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.5);
    max-width: 90%;
    margin: 0 auto;
}

/* Contact CTA button with animated border */
.sponsor-contact-cta {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 20px;
}
.btn-sponsor-contact {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary, #cc0000);
    background-color: #111;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: 0.5s;
}
.btn-sponsor-contact:hover {
    background: var(--primary, #cc0000);
    color: #ffffff;
    box-shadow: 0 0 5px var(--primary), 0 0 25px var(--primary), 0 0 50px var(--primary);
}
.btn-sponsor-contact span { position: absolute; display: block; }
.btn-sponsor-contact span:nth-child(1) { top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--primary)); animation: animate1 1s linear infinite; }
.btn-sponsor-contact span:nth-child(2) { top: -100%; right: 0; width: 2px; height: 100%; background: linear-gradient(180deg, transparent, var(--primary)); animation: animate2 1s linear infinite; animation-delay: 0.25s; }
.btn-sponsor-contact span:nth-child(3) { bottom: 0; right: 0; width: 100%; height: 2px; background: linear-gradient(270deg, transparent, var(--primary)); animation: animate3 1s linear infinite; animation-delay: 0.5s; }
.btn-sponsor-contact span:nth-child(4) { bottom: -100%; left: 0; width: 2px; height: 100%; background: linear-gradient(360deg, transparent, var(--primary)); animation: animate4 1s linear infinite; animation-delay: 0.75s; }
@keyframes animate1 { 0% { left: -100%; } 50%, 100% { left: 100%; } }
@keyframes animate2 { 0% { top: -100%; } 50%, 100% { top: 100%; } }
@keyframes animate3 { 0% { right: -100%; } 50%, 100% { right: 100%; } }
@keyframes animate4 { 0% { bottom: -100%; } 50%, 100% { bottom: 100%; } }

/* Sponsor level cards */
.sponsor-level {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    margin-bottom: 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease, background-color 0.3s ease;
    overflow: hidden;
}
.sponsor-level:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}
.sponsor-level-content-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.level-description p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}
.level-description .level-benefits-list {
    list-style: disc;
    margin-left: 20px;
    padding-left: 5px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

/* Level tier badge (Red / Black / White / Donation) — kept intentional */
.level-title-block {
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: block;
    width: 100%;
    text-align: center;
    transition: background-color 0.3s ease;
}
.level-name {
    display: block;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 5px;
    color: inherit;
}
.level-value {
    display: block;
    font-size: 0.9em;
    font-weight: 500;
    opacity: 0.9;
    color: inherit;
    line-height: 1.3;
}
.red-level-block      { background-color: var(--primary, #CC0000); color: #f8f8f8; }
.black-level-block    { background-color: #000; color: #f8f8f8; border: 1px solid rgba(255,255,255,0.15); }
.white-level-block    { background-color: #ffffff; color: #333; }
.white-level-block .level-name,
.white-level-block .level-value { color: #333; }
.donation-level-block { background-color: #444; color: #f8f8f8; }

/* Sponsor logo area */
.level-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 20px;
}
.sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    max-width: 180px;
    min-width: 120px;
    height: auto;
    background: white;
    border-radius: 6px;
    padding: 8px;
}
.sponsor-logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100px;
    max-width: 100%;
    object-fit: contain;
}
.sponsor-logo:hover { transform: scale(1.05); opacity: 0.9; }
.sponsor-logo.logo-wide { max-width: 240px; }
.sponsor-logo.logo-wide img { max-height: 120px; }
.sponsor-logo.logo-tall { max-width: 150px; }
.sponsor-logo.logo-tall img { max-height: 150px; }

@media (min-width: 769px) {
    .sponsorship-section-v2 { padding: 70px 0; }
    .sponsorship-section-v2 .sponsorship-header { margin-bottom: 50px; }
    .sponsorship-section-v2 .sponsorship-header h2 { font-size: 2.8em; }
    .sponsorship-section-v2 .sponsorship-header p { font-size: 1.15em; max-width: 750px; }
    .sponsor-contact-cta { margin-bottom: 50px; margin-top: 30px; }
    .btn-sponsor-contact { padding: 14px 28px; font-size: 1.1em; letter-spacing: 4px; }
    .sponsor-level { padding: 40px; margin-bottom: 32px; }
    .sponsor-level-content-row {
        display: grid;
        grid-template-columns: 2fr 3fr;
        column-gap: 60px;
        align-items: start;
    }
    .level-title-block { padding: 15px 20px; margin-bottom: 25px; display: inline-block; width: auto; }
    .level-name { font-size: 1.4em; }
    .level-value { font-size: 0.95em; }
    .level-description p { margin-bottom: 20px; font-size: 1rem; }
    .level-description .level-benefits-list { margin-left: 15px; font-size: 0.95rem; line-height: 1.7; }
    .level-logos { justify-content: flex-start; border-left: 1px solid rgba(255,255,255,0.08); padding: 35px; gap: 35px; }
    .sponsor-logo { max-width: 260px; min-width: 150px; }
    .sponsor-logo img { max-height: 150px; }
    .sponsor-logo.logo-wide { max-width: 340px; }
    .sponsor-logo.logo-wide img { max-height: 160px; }
    .sponsor-logo.logo-tall { max-width: 200px; }
    .sponsor-logo.logo-tall img { max-height: 200px; }
}

/* ─── Boosters thank you ──────────────────────────────────────────────────── */
.boosters-thank-you {
    text-align: center;
    margin-bottom: 40px;
    padding: 24px 30px;
    border: 3px solid #cc0000;
    border-radius: 10px;
    background: rgba(204, 0, 0, 0.15);
}
.boosters-flash {
    font-size: 1.4em;
    color: #ffffff !important;
    margin: 0;
    animation: boostersPulse 1.5s ease-in-out infinite;
}
.boosters-flash strong {
    color: #ff3333 !important;
    font-size: 1.15em;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@keyframes boostersPulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 10px rgba(255, 50, 50, 0.6), 0 0 30px rgba(204, 0, 0, 0.3); }
    50% { opacity: 0.5; text-shadow: 0 0 25px rgba(255, 50, 50, 1), 0 0 50px rgba(204, 0, 0, 0.6); }
}

/* ─── Text-only sponsor names ─────────────────────────────────────────────── */
.sponsor-name-text {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: 14px 22px;
    color: #ffffff !important;
    font-size: 1em;
    font-weight: 700;
    text-align: center;
    min-width: 140px;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.sponsor-name-text:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(204, 0, 0, 0.5);
}

/* ─── Individual donations section ─────────────────────────────────────────── */
.donation-options-section {
    padding: 60px 0;
    background-color: #111;
}
.donation-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
}
.donation-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    width: 90%;
    max-width: 480px;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.donation-card:hover {
    transform: translateY(-4px);
    border-color: rgba(204, 0, 0, 0.4);
}
.donation-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.4rem;
}
.donation-card p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    font-size: 0.95rem;
}
.donation-details {
    background-color: rgba(255, 255, 255, 0.04);
    padding: 15px;
    border-radius: 8px;
    margin: 10px 0 0;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.donation-details h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1rem;
}
.donation-details address {
    font-style: normal;
    line-height: 1.5;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}
.donation-details .note {
    font-style: italic;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.donation-details .donation-method-details {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.donation-details .donation-method-header {
    text-align: center;
    margin-bottom: 10px;
}
.donation-details .donation-method-details h5 {
    font-size: 1em;
    color: white;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
}
.donation-details .donation-method-details ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 6px;
    margin-bottom: 8px;
    text-align: left;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.65);
}
.donation-details .donation-method-details ul li { margin-bottom: 5px; }
.donation-details address a:not(.btn),
.donation-details .note a {
    color: var(--primary, #CC0000);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}
.donation-details address a:not(.btn):hover,
.donation-details .note a:hover { color: #ff4444; }

.btn.btn-efunds-portal {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background-color: var(--primary, #CC0000);
    color: #f8f8f8 !important;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-bottom: 10px;
    border: none;
    font-size: 0.95em;
}
.btn.btn-efunds-portal:hover {
    background-color: #a00000;
    color: #f8f8f8 !important;
    transform: translateY(-2px);
}
.btn.btn-efunds-portal i { margin-left: 8px; }
.donation-details .efunds-instructions-intro {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 0.9em;
    font-weight: bold;
    color: white;
}
.donation-details .efunds-instructions-list {
    padding-left: 18px;
    margin-bottom: 8px;
    list-style-type: disc;
    font-size: 0.85em;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.65);
}
.donation-details .efunds-instructions-list li { margin-bottom: 4px; }

@media (min-width: 769px) {
    .donation-options-section { padding: 70px 0; }
    .donation-options { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 35px; margin-top: 30px; }
    .donation-card { padding: 35px; flex: 1; min-width: 300px; max-width: 520px; width: auto; }
    .donation-card h3 { margin-bottom: 15px; font-size: 1.6rem; }
    .donation-card p { margin-bottom: 20px; font-size: 1rem; }
    .donation-details { padding: 20px; margin: 15px 0 0; }
    .donation-details h4 { margin-bottom: 10px; font-size: 1.1rem; }
    .donation-details address { line-height: 1.6; margin-bottom: 10px; font-size: 1rem; }
    .donation-details .donation-method-details { margin-top: 20px; padding-top: 15px; }
    .donation-details .donation-method-details h5 { font-size: 1.1em; }
    .donation-details .donation-method-details ul { padding-left: 25px; font-size: 0.95em; }
    .btn.btn-efunds-portal { display: inline-block; width: auto; padding: 10px 20px; font-size: 1rem; }
}

/* ─── Equipment donation section ────────────────────────────────────────────── */
.equipment-form-section {
    padding: 60px 0;
    background-color: #111;
}

.equipment-donation-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px 28px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

@media (min-width: 600px) {
    .form-row-2 {
        flex-direction: row;
    }
    .form-row-2 .form-group {
        flex: 1;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3px;
}

.form-group .required {
    color: var(--primary, #CC0000);
}

.form-group .optional {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
    font-size: 0.8rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    padding: 10px 14px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-group select option {
    background-color: #1a1a1a;
    color: white;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary, #CC0000);
    background-color: rgba(255, 255, 255, 0.09);
}

.btn-submit-form {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background-color: var(--primary, #CC0000);
    color: white;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.btn-submit-form:hover:not(:disabled) {
    background-color: #aa0000;
    transform: translateY(-1px);
}

.btn-submit-form:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-result {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}

.form-result.form-success {
    background-color: rgba(26, 140, 26, 0.15);
    border: 1px solid rgba(26, 140, 26, 0.35);
    color: #4caf50;
}

.form-result.form-error {
    background-color: rgba(204, 0, 0, 0.12);
    border: 1px solid rgba(204, 0, 0, 0.3);
    color: #ff6666;
}
.alternative-contact-section {
    padding: 60px 0;
    background-color: #1a1a1a;
    text-align: center;
}
.contact-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
.contact-option {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    width: 90%;
    max-width: 320px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.contact-option:hover {
    transform: translateY(-4px);
    border-color: rgba(204, 0, 0, 0.35);
}
.option-icon {
    color: var(--primary);
    margin-bottom: 15px;
}
.option-icon svg { width: 35px; height: 35px; }
.contact-option h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.contact-option p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    font-size: 0.9rem;
}
.contact-option a:not(.btn) {
    color: var(--primary);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}
.contact-option a:not(.btn):hover { color: #ff4444; }

@media (min-width: 769px) {
    .equipment-form-section { padding: 70px 0; }
    .equipment-donation-form { padding: 40px; }
    .alternative-contact-section { padding: 70px 0; }
    .contact-options { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 40px; }
    .contact-option { padding: 30px; flex: 1; min-width: 280px; max-width: 320px; width: auto; }
    .option-icon { margin-bottom: 20px; }
    .option-icon svg { width: 40px; height: 40px; }
    .contact-option h3 { margin-bottom: 15px; font-size: 1.3rem; }
    .contact-option p { margin-bottom: 15px; font-size: 1rem; }
    .contact-option a:not(.btn) { font-size: 1rem; }
}
