/* Sponsorship Section & Page Styles */

/* Common Variables */
:root {
    --neon-green: #39ff14;
    --neon-purple: #bc13fe;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-bg: #0a0a0a;
}

/* =========================================
   Partners & Sponsors Section (Home)
   ========================================= */
#sponsors {
    padding: 6rem 2rem;
    background: transparent;
    /* Show global starfield */
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Header */
.sponsors-header-small {
    color: var(--neon-green);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.sponsors-main-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: white;
    margin-bottom: 4rem;
}

.sponsors-main-title .highlight-green {
    color: var(--neon-green);
}

.sponsors-main-title .highlight-purple {
    color: #9d4edd;
    /* Adjusted purple for readability */
}




/* Our Sponsors - Coming Soon */
.our-sponsors-section {
    margin-top: 5rem;
    text-align: center;
}

.our-sponsors-title {
    color: white;
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.coming-soon-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--glass-border);
    border-radius: 15px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-text {
    color: #888;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* =========================================
   Sponsorship Tiers Page
   ========================================= */
.sponsorship-page-body {
    background: var(--bg-color);
    padding-top: 100px;
    /* Space for fixed nav */
    min-height: 100vh;
}

.tiers-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tiers-main-title {
    font-size: 3.5rem;
    color: white;
    font-family: 'Cinzel', serif;
}

.tiers-main-title span {
    color: #9d4edd;
    /* Purple */
}

.tiers-main-title span.green-letter {
    color: var(--neon-green);
}

.tiers-subtitle {
    color: #aaa;
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* Tiers Grid */
.tiers-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-bottom: 6rem;
}

/* Row 1: Top 3 Tiers */
.tiers-row-1 {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.tier-card {
    background: #050505;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    width: 350px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

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

/* Specific Tier Styles */
.tier-card.title-sponsor {
    border: 2px solid #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.tier-card.co-sponsor,
.tier-card.associate-sponsor {
    border: 1px solid var(--neon-green);
}

/* Recommended Badge */
.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffaa00;
    color: black;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Icon */
.tier-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.tier-card.title-sponsor .tier-icon {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
}

.tier-card:not(.title-sponsor) .tier-icon {
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
}

.tier-name {
    text-align: center;
    font-size: 1.5rem;
    color: #ffd700;
    /* Default gold for title */
    margin-bottom: 0.5rem;
    font-family: 'Cinzel', serif;
}

.tier-card:not(.title-sponsor) .tier-name {
    color: var(--neon-green);
}

.tier-price {
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #ffd700;
}

.tier-card:not(.title-sponsor) .tier-price {
    color: var(--neon-green);
}

/* List */
.tier-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.tier-benefits li {
    color: #ddd;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
    text-align: left;
}

.tier-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

.tier-card.title-sponsor .tier-benefits li::before {
    color: #ffd700;
}

/* Button */
.tier-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.tier-card.title-sponsor .tier-btn {
    background: #ffd700;
    /* Gold */
    color: black;
}

.tier-card.title-sponsor .tier-btn:hover {
    background: #ffed4a;
}


.tier-card:not(.title-sponsor) .tier-btn {
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
}

.tier-card:not(.title-sponsor) .tier-btn:hover {
    background: var(--neon-green);
    color: black;
}


/* Row 2: Bottom 2 Tiers */
.tiers-row-2 {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Event & Goodies Sponsor Colors */
.tier-card.event-sponsor .tier-name,
.tier-card.goodies-sponsor .tier-name {
    color: var(--neon-green);
}

.tier-card.event-sponsor .tier-price,
.tier-card.goodies-sponsor .tier-price {
    color: var(--neon-green);
}

/* Responsive */
@media (max-width: 768px) {
    .sponsors-main-title {
        font-size: 2rem;
    }

    .why-sponsor-container {
        padding: 2rem 1rem;
    }

    .tiers-row-1,
    .tiers-row-2 {
        flex-direction: column;
        align-items: center;
    }

    .tier-card {
        width: 100%;
        max-width: 400px;
    }

    .sponsor-features-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 on tablet */
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    /* 1 col on mobile */
}

/* =========================================
   New Simple Sponsorship Layout (Reference Replica)
   ========================================= */

/* Container - Adapted from .about-card style */
.why-sponsor-container {
    background: var(--glass-bg);
    /* Use site variable */
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Layout / Spacing (Restoring "Perfect" Reference Sizes) */
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;

    /* Theme Accents */
    border-radius: 4px;
    /* Match about-card radius */
    box-shadow: 0 0 20px rgba(0, 180, 50, 0.05);
    /* --card-glow */
    border-left: 3px solid var(--neon-green);
    /* Match about-card accent */
    position: relative;
    transition: all 0.3s ease;
}

.why-sponsor-container:hover {
    box-shadow: 0 8px 30px rgba(0, 255, 65, 0.15);
    border-color: rgba(0, 255, 65, 0.3);
}

/* Corner Accents - Inherited from .about-card concept */
.why-sponsor-container::before,
.why-sponsor-container::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--neon-green);
    border-style: solid;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

/* Top Right Corner */
.why-sponsor-container::before {
    top: -1px;
    right: -1px;
    border-width: 2px 2px 0 0;
}

/* Bottom Right Corner */
.why-sponsor-container::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
}

.why-sponsor-container:hover::before,
.why-sponsor-container:hover::after {
    opacity: 1;
    border-color: var(--neon-green);
    filter: drop-shadow(0 0 5px var(--neon-green));
}

/* Heading - Matches text-2xl md:text-4xl (approx 2.25rem) */
.why-sponsor-title-simple {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.25rem;
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
    /* mb-6 */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Text Wrapper - Matches max-w-2xl (approx 672px) */
.why-sponsor-text-content {
    max-width: 672px;
    margin: 0 auto 2.5rem;
    /* mb-10 */
    text-align: center;
}

/* Text - Matches text-base leading-relaxed */
.sponsor-simple-text {
    color: #d1d5db;
    /* gray-300 */
    font-size: 1rem;
    line-height: 1.625;
    /* leading-relaxed */
    margin-bottom: 0;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
}

.view-tiers-btn-container {
    display: flex;
    justify-content: center;
}

/* Button - Matches px-8 py-4 */
.view-tiers-btn {
    padding: 1rem 2rem;
    letter-spacing: 1px;
    background: var(--neon-green);
    /* Theme match: cyan-500 equivalent */
    color: black;
    border-radius: 0.25rem;
    /* rounded */
    border: 2px solid transparent;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.view-tiers-btn:hover {
    background: #0a0a0a;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3), inset 0 0 10px rgba(57, 255, 20, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .why-sponsor-container {
        padding: 2rem;
        /* p-8 */
        width: 90%;
    }

    .why-sponsor-title-simple {
        font-size: 1.5rem;
        /* text-2xl */
    }

    .sponsor-simple-text {
        font-size: 0.875rem;
        /* text-sm */
    }

    .view-tiers-btn {
        padding: 0.875rem 1.75rem;
        /* scaled down slightly */
        font-size: 0.875rem;
    }
}