/* =========================================================
   SPONSORS.CSS â€” sponsors.html only
   Load AFTER base.css.
   ========================================================= */

#sponsors,
#support {
    text-align: left;
    padding: 50px 20px;
    background-color: var(--color-1-background);
    
}

#sponsors {
    padding-top: 20px; /* extra clearance below fixed navbar, space you want above content */
    margin-top: -50px;   /* push the section up slightly to offset navbar */
}

#sponsors h2,
#support h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

#sponsors h3 {
    margin-top: 40px;
    font-size: 1.4rem;
    text-align: center;
}

#sponsors p,
#support p {
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 25px 20px;
    background: var(--color-text-light);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    border: 3px solid var(--color-2-background);
}

/* ===== SPONSOR ICON GRID ===== */
.Sponsors {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.sponsor-icon {
    width: 110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-text-light);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--color-text-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.495);
}

.sponsor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== PAST SPONSORS (tightened) ===== */
.past-title {
    margin: 10px 0 5px;
    text-align: center;
}

.Sponsors.past-sponsors {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
}

/* ===== SUPPORT / GO FUND ME SECTION ===== */
#support {
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
    padding: 30px 0;
    background: none;
    margin-top: -30px;   /* push the section up slightly to offset navbar */
}

#support p {
    text-align: left;
}