/* --- RESET STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather', serif;
    background-color: #EDE7F6; /* Light Lavender Background */
    color: #333;
    text-align: center;
    line-height: 1.6;
}

/* --- HEADER STYLES --- */
header {
    background-color: #6A4C9C; /* Dark Lavender */
    padding: 15px 0;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

/* Social Links */
.social-links a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #D8BFD8;
}

/* Navigation Bar */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #D8BFD8;
}

/* --- HERO SECTION --- */
.hero {

    background-color: #E6DAF0;
    padding: 40px;
    margin: auto;
    width: 80%;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 

}

.hero h2 {
    font-size: 1.5rem;
    color: #5E3589;
    font-weight: bold;
}

.hero h1 {
    font-size: 3rem;
    color: #6A4C9C;
    font-weight: bold;
}

.hero h3 {
    font-size: 1.2rem;
    color: #6A4C9C;
    font-weight: bold;
}

/* Profile Image */
.profile-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
}

.profile-image img {
    margin: auto;
   width: 220px;
    height: 220px;
    object-fit: cover;
    border: 8px solid #6A4C9C;
    background-color: #6A4C9C;
    padding: 10px;
    display: block;
}

/* Paragraph Text */
.hero p {
    max-width: 800px;
    margin: 20px auto;
    font-size: 1rem;
    color: #333;
}

/* --- FOOTER --- */
footer {
    background-color: #6A4C9C;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
