/* 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;
    margin-right: 230px;
}

.about-left p {
    margin-left: 70px;
    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: 0px;
    margin-bottom: 30px;
    color: #F5F5F5;
}

/* Kegiatan dan Seminar */
.activities-section {
    padding: 0px 0px;
}

.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 {
    padding: 30px 20px;
    color: #DDDDDD;
}

.experience-item {
    margin-left: 20px;
    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(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.1);
}

/* 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;
    }
}

/* Formulir Kontak */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #222222;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.contact-form h3 {
    color: #F5F5F5;
    text-align: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-form label {
    font-size: 16px;
    color: #DDDDDD;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    background-color: #333333;
    color: #F5F5F5;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #4CAF50;
    outline: none;
}

.contact-form .submit-btn {
    background-color: #4CAF50;
    color: #F5F5F5;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.contact-form .submit-btn:hover {
    background-color: #45a049;
}

/* Responsif */
@media screen and (max-width: 768px) {
    .contact-form {
        width: 90%;
    }
}
