﻿/* Modern BUHS Styles for Index Page */

/* Hero Section */
.buhs-hero-section {
    background: linear-gradient(135deg, var(--buhs-primary) 0%, var(--buhs-secondary) 100%);
    color: var(--buhs-white);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

    .buhs-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M20,20 Q50,10 80,20 T100,50 T80,80 T50,90 T20,80 T0,50 T20,20 Z" fill="rgba(255,255,255,0.05)"/></svg>');
        opacity: 0.3;
    }

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--buhs-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-apply {
    background: var(--buhs-accent);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all var(--transition-speed);
}

.btn-apply:hover {
    background: #3a8d88;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 122, 118, 0.4);
    color: white;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.8);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Prospectus Download Section */
.prospectus-download-section {
    padding: 4rem 0;
    background: var(--buhs-light);
}

.prospectus-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    padding: 2rem;
}



.prospectus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--buhs-light);
}

.prospectus-title {
    color: var(--buhs-primary);
    font-weight: 700;
    margin: 0;
}

.btn-download {
    background: #d9534f;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all var(--transition-speed);
}

    .btn-download:hover {
        background: #c9302c;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(217, 83, 79, 0.3);
        color: white;
    }

.alert-buhs {
    background: linear-gradient(135deg, rgba(0, 95, 90, 0.1) 0%, rgba(8, 78, 75, 0.1) 100%);
    border-left: 4px solid var(--buhs-accent);
    border-radius: 8px;
    padding: 1.5rem;
    color: var(--buhs-text);
}

.alert-buhs h5 {
    color: var(--buhs-primary);
    margin-bottom: 0.8rem;
}

.prospectus-highlights {
    margin-top: 2rem;
}

.prospectus-highlights h4 {
    color: var(--buhs-primary);
    font-weight: 600;
}

.highlight-item {
    background: rgba(230, 242, 241, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
    height: 100%;
    border-left: 3px solid var(--buhs-accent);
}

.highlight-item i {
    color: var(--buhs-primary);
}

.highlight-item ul {
    margin-bottom: 0;
}

.highlight-item li {
    padding: 0.2rem 0;
    font-size: 0.9rem;
}

.prospectus-quick-info table {
    font-size: 0.9rem;
}

.prospectus-quick-info th {
    background-color: var(--buhs-light);
    color: var(--buhs-primary);
}

/* Quick Links Section */
.quick-links-section {
    padding: 3rem 0;
    background: white;
}

.quick-links-section h3 {
    color: var(--buhs-primary);
    font-weight: 700;
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--buhs-light);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-decoration: none;
    color: var(--buhs-text);
    transition: all var(--transition-speed);
    height: 100%;
    min-height: 120px;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: var(--buhs-primary);
    color: white;
}

.quick-link-card:hover .quick-link-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.quick-link-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--buhs-primary);
    transition: all var(--transition-speed);
}

.quick-link-card span {
    font-weight: 600;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .prospectus-header {
        flex-direction: column;
        text-align: center;
    }

    .btn-download, .btn-apply, .btn-outline-light {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

        .hero-actions a {
            width: 100%;
        }
}
