/* Prestasi Page Styles */
.prestasi-detail {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.prestasi-content {
    display: grid;
    gap: 3rem;
}

.prestasi-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.prestasi-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1a5f7a, #2c3e50);
}

.prestasi-section:hover {
    transform: translateY(-5px);
}

.prestasi-section h3 {
    color: #1a5f7a;
    margin-bottom: 2rem;
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.prestasi-section h3 i {
    color: #2c3e50;
    font-size: 1.8rem;
}

.prestasi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.prestasi-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.prestasi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1a5f7a, #2c3e50);
}

.prestasi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.prestasi-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.prestasi-card h4 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin: 0;
}

.prestasi-card .date {
    color: #1a5f7a;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.prestasi-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prestasi-card ul li {
    color: #666;
    padding: 0.75rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.prestasi-card ul li:last-child {
    border-bottom: none;
}

.prestasi-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: bold;
}

.prestasi-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.prestasi-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.prestasi-card .achievement-level {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #1a5f7a;
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.prestasi-category {
    margin-bottom: 3rem;
}

.prestasi-category h4 {
    color: #34495e;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #1a5f7a;
    font-size: 1.6rem;
}

.achievement-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #1a5f7a 0%, #2c3e50 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.prestasi-card.highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #1a5f7a;
}

.prestasi-card.highlight::before {
    height: 5px;
}

.prestasi-card.highlight .achievement-badge {
    background: linear-gradient(135deg, #2c3e50 0%, #1a5f7a 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .prestasi-section {
        padding: 1.5rem;
    }

    .prestasi-grid {
        grid-template-columns: 1fr;
    }

    .prestasi-section h3 {
        font-size: 1.6rem;
    }

    .prestasi-card h4 {
        font-size: 1.2rem;
    }

    .prestasi-header {
        flex-direction: column;
        gap: 1rem;
    }

    .achievement-badge {
        align-self: flex-start;
    }
} 