/* about.css — styles specific to about.html */

.heading {
    color: #00a2ff;
    font-size: 2.5rem;
    text-align: center;
}

main p {
    color: #e6eef6;
    line-height: 1.6;
}

.about {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 500px;
    margin: 5rem auto 1rem auto;
    padding: 1.25rem;
    background: linear-gradient(180deg, rgba(10,24,40,0.6), rgba(6,48,82,0.5));
    border-radius: 12px;
    border: 1px solid rgba(0,162,255,0.12);
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

.about-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,162,255,0.12);
    flex-shrink: 0;
}

.about-content p {
    color: #e6eef6;
    line-height: 1.6;
}

#outro-heading {
    color: #00a2ff;
    text-align: center;
    margin-top: 3rem;
    font-size: 2rem;
}

.email-tone {
    color: #00a2ff;
    text-decoration: none;
}

#heading {
    color: #00a2ff;
    font-size: 2.5rem;
    text-align: center;
}

.skills-list {
    list-style: disc inside;
    margin-top: 1rem;
    color: #e6eef6;
    line-height: 1.6;
}

.hr-class {
    margin: 2.4rem auto;
    border: none;
    height: 1px;
    max-width: 600px;
    background: linear-gradient(to right, rgba(0,162,255,0), rgba(0,162,255,0.4), rgba(0,162,255,0));
}

.h3-topic {
    color: #00a2ff;
    text-align: center;
    margin: 0.6rem auto 1.1rem auto;
    display:block;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: block;
    flex-direction: column;
}

#contact-form label {
    color: #dbe8f1;
    font-size: 1rem;
    display: block;
}

/* When the .about block is used for the contact section, stack content vertically */
.about.contact-section {
    display: block;
    align-items: normal;
    gap: 0;
    max-width: 820px;
    margin: 2rem auto;
    padding: 1.25rem;
}

.about.contact-section  {
    margin-bottom: 1.4rem;
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    justify-items: center;
}