/* GLOBAL STYLES */
body {
    margin: 0;
    font-family: "Arial Rounded MT Bold", Arial, sans-serif;
    background-color: #FFF9F2; /* light beige */
    color: #6e5a7e; /* muted purple */
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

/* LOGO */
.logo {
    font-size: 28px;
    font-weight: bold;
}

/* NAVIGATION */
nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #8c7aa5;
    font-weight: bold;
}

nav a.active {
    color: #6e5a7e;
}

/* DIVIDER LINE */
.divider {
    height: 8px;
    background-color: #7d6a91;
}

/* MAIN LAYOUT */
main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    gap: 50px;
}

/* LEFT SIDE IMAGE */
.left img {
    width: 400px;
    filter: grayscale(100%) sepia(20%) hue-rotate(240deg) saturate(200%);
    /* This gives the purple tint effect */
}

/* RIGHT SIDE */
.right {
    max-width: 500px;
}

/* PAGE TITLE */
.right h1 {
    font-size: 64px;
    margin-bottom: 20px;
}

/* BIO BOX */
.bio-box {
    border: 3px solid #7d6a91;
    border-radius: 20px;
    padding: 20px;
    font-size: 18px;
    line-height: 1.5;
}

/* FOOTER */
footer {
    background-color: #7d6a91;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    font-weight: bold;
}
