/* About Me Section */
.about-me {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*gap: 20px;*/
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Content Wrapper */
.about-me-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 800px; /* Consistent width for alignment */
}

/* Profile Photo */
.about-me-photo {
    display: flex;
    justify-content: center; /* Center the image horizontally */
}

.about-me-photo img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* About Me Text */
.about-me-text {
    max-width: 100%; /* Adjust to use full width */
    text-align: center;
}

.about-me-text h2 {
    font-size: 2.2em;
    color: var(--color-primary);
    margin-bottom: 15px;
    margin-left: 0; /* Remove margin to align with contact info */
}

/* Contact Information */
.about-me-details {
    max-width: 800px; /* Consistent width for alignment */
    text-align: center;
    /*margin-top: 20px; /* Space above Contact Information */
}

.about-me-details h3 {
    font-size: 2em;
    color: var(--color-primary);
    margin-bottom: 15px;
    margin-left: 0; /* Remove margin to align with About Me title */
}

.about-me-text p {
    font-size: 1.1em;
    line-height: 1.4; /* Adjust the line height as needed */
    margin-bottom: 20px;
}

/* Contact Information */
.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
}

.contact-info i {
    color: var(--color-primary);
    font-size: 1.2em;
}

.contact-info a {
    color: var(--color-primary);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info .fa-facebook {
    color: #1877F2; /* Facebook blue */
}

.contact-info .fa-instagram {
    color: #C13584; /* Instagram pink */
}

.contact-info .fa-youtube {
    color: #FF0000; /* YouTube red */
}

/* Responsive Design */
@media (min-width: 768px) {
    .about-me-content {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }

    .about-me-text, .about-me-details {
        text-align: left;
        width: 100%; /* Full width for consistent alignment */
    }
}

@media (max-width: 768px) {
    .about-me-content {
        flex-direction: column;
        align-items: center;
    }

    .about-me-photo img {
        width: 150px;
        height: 150px;
    }

    .about-me-details {
        margin-top: 20px;
    }
}
