/* Kursus Page Specific Styles */

.kursus-hero {
    position: relative;
    height: 350px;
    background: url('assets/header-kursus.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.kursus-hero .hero-overlay {
    display: none;
}

.kursus-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.kursus-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.kursus-hero .hero-subtitle {
    font-size: 1.2rem;
    color: white;
    font-weight: 400;
}

/* Course Description Section */
.course-description {
    padding: 80px 0 40px;
    background: white;
}

.course-description .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.description-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

/* Courses Section */
.courses-section {
    padding: 40px 0 80px;
    background: white;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.course-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.course-badge {
    display: flex;
    justify-content: center;
    padding: 12px 15px;
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
}

.badge-level {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

.course-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e0e0e0;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-info {
    padding: 20px;
}

.course-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #E85D04;
    margin: 0;
    line-height: 1.4;
    min-height: 60px;
}

.footer {
    background: #E85D04;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .course-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .kursus-hero {
        height: 280px;
    }
    
    .kursus-hero .hero-title {
        font-size: 2rem;
    }
    
    .kursus-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .course-description .section-title {
        font-size: 1.6rem;
    }
    
    .description-text {
        font-size: 1rem;
    }
    
    .course-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .course-description {
        padding: 50px 0 30px;
    }
    
    .courses-section {
        padding: 30px 0 50px;
    }
}

@media (max-width: 480px) {
    .kursus-hero {
        height: 250px;
    }
    
    .kursus-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .kursus-hero .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .course-description .section-title {
        font-size: 1.4rem;
    }
    
    .description-text {
        font-size: 0.95rem;
    }
}
