/* Academia Page Specific Styles */

/* Academia Hero Section */
.academia-hero {
    /* background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%); */
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Programs Section */
.programs-section {
    /* background-color: #e0e7ff; */
    padding: 4rem 0;
    text-align: center;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.programs-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
    grid-template-columns: 1fr;
}

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

.program-card {
    background-color: #c7d2fe;
    border-radius: 0.75rem;
    padding: 2.5rem 1.5rem;
    transition: all 0.3s ease;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.program-icon {
    color: #3b82f6;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.program-icon i {
    font-size: 2rem;
}

.program-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.program-description {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

/* CTA Section */
.cta-section {
    margin-top: 2rem;
}

.join-academic-btn {
    background-color: #1f2937;
    color: white;
    border: none;
    border-radius: 0.375rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.join-academic-btn:hover {
    background-color: #111827;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

/* Academia Footer Styles */
.academia-footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
}

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

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

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.skillwallet-logo {
    margin-bottom: 1rem;
}

.footer-description {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
}

.contact-info i {
    color: #9ca3af;
}

.office-section {
    margin-bottom: 1.5rem;
}

.office-section:last-child {
    margin-bottom: 0;
}

.office-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
}

.address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.address i {
    color: #9ca3af;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.address-text {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
}

.copyright {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.program-card {
    animation: fadeInUp 0.6s ease-out;
}

.program-card:nth-child(2) {
    animation-delay: 0.1s;
}

.program-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Responsive Design */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .program-card {
        padding: 2rem 1.25rem;
    }
    
    .program-title {
        font-size: 1.125rem;
    }
}

/* Focus styles for accessibility */
.join-academic-btn:focus,
.footer-link:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.program-card:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .academia-hero {
        background: white !important;
        color: black !important;
    }
    
    .academia-footer {
        background: white !important;
        color: black !important;
        border-top: 1px solid #000;
    }
    
    .program-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #000;
        background: white !important;
    }
}