/* Reset some basic elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #181818;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styling */
header {
    background-color: #1e1e2e;
    padding: 15px 50px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    color: #c792ea;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #b3b3b3;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #c792ea;
}

/* Main content styling */
main {
    flex: 1;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-me {
    max-width: 600px;
}

.about-me h1 {
    color: #c792ea;
    margin-bottom: 20px;
}

.about-me p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer Styling */
footer {
    background-color: #1e1e2e;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    color: #888;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.5);
}

.contact-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-section h1 {
    color: #c792ea;
    margin-bottom: 10px;
    font-size: 2rem;
}

.contact-section p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 25px;
}

.contact-details p {
    margin: 10px 0;
    font-size: 1rem;
}

.contact-details a {
    color: #c792ea;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #ffffff;
}

.contact-section h2 {
    margin-top: 40px;
    color: #c792ea;
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #c792ea;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ffffff;
}

.social-links i {
    margin-right: 6px;
}

.about-me {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.about-me h1 {
    color: #c792ea;
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-me p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 20px;
}

.contact-purple {
    color: #c792ea;
}
