/* Sponsors Page Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content .lead {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Sponsor Categories */
.sponsor-category {
    margin-bottom: 4rem;
}

.category-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Sponsor Cards */
.sponsor-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: center;
    padding: 2rem 1.5rem;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Sponsor Icons */
.sponsor-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.sponsor-icon.primary {
    color: var(--primary-color);
}

.sponsor-icon.warning {
    color: #ffc107;
}

.sponsor-icon.success {
    color: #28a745;
}

.sponsor-icon.info {
    color: #17a2b8;
}

/* Sponsor Information */
.sponsor-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.sponsor-type {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sponsor-description {
    font-size: 0.875rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Sponsor Benefits */
.sponsor-benefits {
    margin-top: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.benefit-item i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

/* Sponsorship Levels */
.sponsorship-level {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.sponsorship-level h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.sponsorship-level .price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sponsorship-level .description {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.sponsorship-level .btn {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.sponsorship-level .btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Benefit Cards */
.benefit-card {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-card .benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .sponsor-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .sponsorship-level {
        padding: 1.5rem;
    }
    
    .sponsorship-level .price {
        font-size: 2rem;
    }
}

/* Grid Layout */
.sponsors-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (min-width: 992px) {
    .sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

/* Card Enhancements */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Background Light Section */
.bg-light {
    background-color: #f8f9fa !important;
}

/* Text Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-warning {
    color: #ffc107 !important;
}

.text-success {
    color: #28a745 !important;
}

.text-info {
    color: #17a2b8 !important;
}

.text-muted {
    color: #6c757d !important;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header .lead {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.contact-section h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-section p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.contact-section .btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.contact-section .btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
} 