/*
 * about-page.css
 * Styles for the About page.
*/

.profile-photo {
    border-radius: 50%;
    /* Creates a circular photo */
    max-width: 250px;
    border: 5px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: #343a40;
    /* Dark grey */
    transition: color 0.2s ease-in-out;
}

.social-links a:hover {
    color: var(--brand-orange);
    /* Your brand's orange */
}

.core-competencies {
    border: 1px solid #dee2e6;
}

.core-competencies h4 {
    color: #212529;
}

/* contact page */

/* Accent button style */
.btn-accent {
    background-color: #ff6600;
    border: none;
    color: #fff;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-accent:hover {
    background-color: #e65c00;
    transform: scale(1.03);
}

/* Contact section spacing */
.contact-section h1 {
    font-weight: 700;
}
.contact-section p.lead {
    font-size: 1.1rem;
}

/* Form styling */
.contact-form {
    border-radius: 1rem;
}
.contact-form label {
    font-weight: 600;
}
