/* about-style.css */

/* ====== FONT ====== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

/* ====== LAYOUT & TYPOGRAPHY ====== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5; /* Light background color */
    color: #333;
    text-align: center;
}

.about-container {
    width: 80%;
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #ffffff; /* White background for content */
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: left;
}

h1, h2 {
    color: #222;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: 500;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.4rem;
}

/* ====== PERSONAL INFO LIST ====== */
.personal-info {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
}

.personal-info li {
    display: flex;
    margin-bottom: 0.5rem;
}

.personal-info li b {
    width: 140px;
    flex-shrink: 0;
    color: #555;
}

.personal-info li span {
    flex-grow: 1;
}

/* ====== SHORT DESCRIPTION & PARAGRAPHS ====== */
.short-description {
    background-color: #eef2f5;
    padding: 0.75rem 1rem;
    border-left: 4px solid #4a90e2;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    font-style: italic;
}

p {
    margin-bottom: 1rem;
    text-align: justify;
}

/* ====== SMALL TOUCHES ====== */
a {
    color: #4a90e2;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}