/* Umum */
.about-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0px 0px;
    gap: 40px;
}

.activities-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 20px;
}

.about-left {
    flex: 1;
    min-width: 300px;
    color: #DDDDDD;
}

.about-left h1, 
.about-left p {
    margin-bottom: 10px;
    font-family: 'Poppins', 'Segoe UI', 'Helvetica', sans-serif;
}

.about-left h1 {
    font-size: 32px;
    color: #F5F5F5;
}

.about-left p {
    margin-left: 40px;
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
}

.about-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.profile-photo {
    width: 300px;
    height: 300px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Judul */
.section-title {
    text-align: center;
    font-size: 28px;
    margin-top: 20px;
    margin-bottom: 30px;
    color: #F5F5F5;
}

/* Kegiatan dan Seminar */
.activities-section {
    padding: 20px 20px;
}

.activity-list {
    margin-left: 20px;
    list-style-type: disc;
    padding-left: 40px;
    color: #DDDDDD;
}

.activity-list li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Pengalaman Kerja */
.experience-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 20px;
    color: #DDDDDD;
}

.experience-item {
    margin-left: 80px;
    margin-bottom: 30px;
}

.experience-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #F5F5F5;
}

.experience-item p {
    font-size: 16px;
}

/* Galeri */
.gallery-section {
    padding: 30px 20px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Menyusun 4 gambar dalam satu baris */
    gap: 20px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 200px; /* Ukuran gambar ditambah tinggi agar potret */
    object-fit: cover; /* Agar gambar tetap proporsional dalam ukuran yang sudah ditentukan */
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.1); /* Efek zoom saat hover */
}

/* Responsive khusus galery */
@media screen and (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* Untuk ukuran layar kecil, gambar akan disusun dalam 2 kolom */
        justify-content: center; /* Menjaga gambar tetap di tengah saat ukuran layar kecil */
    }

    .gallery-grid img {
        width: 100%; /* Membuat gambar memenuhi layar penuh pada perangkat kecil */
        height: 250px auto; /* Menjaga proporsi gambar */
    }
}
/* Responsive */
@media screen and (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .about-left, .about-right {
        width: 100%;
    }

    .profile-photo {
        width: 250px;
        height: 250px;
    }
}
@media screen and (max-width: 768px) {
    .experience-section {
        flex-direction: column;
        align-items: center;
    }
}

/* buat calender nya */
.calendar-mini {
    width: 100%;
    max-width: 300px;
    margin: 80px 0 20px auto;
    background: rgba(249, 249, 249, 0.1); /* transparan */
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.8);
    margin-left: 0px;
    backdrop-filter: blur(3px); /* efek blur */
}

.calendar-header {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
}

.calendar-table th,
.calendar-table td {
    border: 1px solid #ddd;
    width: 14.2%;
    height: 40px;
    text-align: center;
    font-size: 0.9rem;
}

.calendar-table td.today {
    background-color: #ffeb3b; /* beri warna untuk menandai tanggal hari ini */
    color: #000;
    font-weight: bold;
}

/* bates kelar css calender */

