/* About page specific styles */

/* About Section */
.about-section {
    padding: 5rem 0;
    background: white;
    color: #1f2937;
}

.about-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.about-section p {
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: 3rem;
    margin-right: auto;
}

/* Category Title - matching placements and sponsors pages */
.category-title {
    position: relative;
    margin-bottom: 2rem;
    color: #1a365d;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: -1rem;
    padding-left: 1rem;
}

@media (min-width: 640px) {
    .category-title {
        margin-left: -1rem;
        padding-left: 1rem;
    }
}

@media (min-width: 768px) {
    .category-title {
        margin-left: -1rem;
        padding-left: 1rem;
    }
}

@media (min-width: 1024px) {
    .category-title {
        margin-left: -1rem;
        padding-left: 1rem;
    }
}

@media (min-width: 1280px) {
    .category-title {
        padding-left: 4rem;
    }
}

@media (min-width: 1536px) {
    .category-title {
        padding-left: 5rem;
    }
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #3b82f6;
}

/* Company Logo Grid - matching placements and sponsors pages */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .companies-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Company Logo Card - matching placements and sponsors pages */
.logo-card {
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    filter: none;
}

.logo-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    filter: drop-shadow(0 0 200px rgba(0, 0, 0, 0.4));
}

.company-logo {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    margin: 0 auto;
    filter: none;
    transition: filter 0.3s ease;
    border-radius: 50%;
}

@media (min-width: 640px) {
    .company-logo {
        height: 90px;
    }
}

@media (min-width: 768px) {
    .company-logo {
        height: 100px;
    }
}

.logo-card:hover .company-logo {
    filter: none;
}

/* Sponsor Info - matching sponsors page */
.sponsor-info {
    margin-top: 1rem;
}

.sponsor-name {
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: #1f2937;
    font-size: 1.1rem;
}

.sponsor-tiers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

/* Tier Badges - matching sponsors page */
.tier-badge {
    font-size: 0.75rem;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tier-badge.diamond {
    background-color: #1e3a8a;
}

.tier-badge.gold {
    background-color: #eab308;
}

.tier-badge.silver {
    background-color: #94a3b8;
}

.tier-badge.bronze {
    background-color: #d97706;
}

/* About page specific navbar adjustments */
.about-navbar .navbar-container a {
    color: #1f2937;
}

.about-navbar #navbar-toggle {
    color: #1f2937;
    display: block !important;
    cursor: pointer;
}

/* About page footer */
.about-footer {
    background: #111827;
    color: white;
    text-align: center;
    padding: 1.25rem 0;
} 