/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fa; /* Light background color */
    color: #333; /* Dark text for contrast */
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3 {
    font-weight: 600;
}

ul {
    list-style-type: none;
}

/* Header Styles */
header {
    background-color: #2C3E50; /* Dark blue color */
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header .nameBar h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.1em;
    margin-bottom: 15px;
    font-style: italic;
}

header nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
}

header nav ul li a {
    font-size: 1.1em;
    color: #ecf0f1; /* Light color for links */
    transition: color 0.3s, transform 0.3s;
}

header nav ul li a:hover {
    color: #1ABC9C; /* Teal color for hover */
    transform: scale(1.1); /* Slight scaling on hover */
}

/* About Section */
.about {
    margin: 40px auto;
    padding: 20px;
    max-width: 800px;
    text-align: center;
}

.about h2 {
    font-size: 2.5em;
    color: #2C3E50;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1em;
    color: #7f8c8d;
    margin-bottom: 10px;
}

/* Social Media Section */
.contactSocials {
    margin-top: 50px;
    text-align: center;
}

.contactSocials p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.socialContainer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.socialmedia {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.socialmedia:hover {
    transform: scale(1.1); /* Slight zoom effect */
    filter: brightness(1.2); /* Lighten the icons on hover */
}

/* Footer Styles */
footer {
    background-color: #34495E; /* Dark grey-blue */
    color: white;
    padding: 15px;
    text-align: center;
}

footer p {
    font-size: 1em;
    font-style: italic;
    letter-spacing: 1px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    header p {
        font-size: 1.2em;
    }

    header nav ul {
        flex-direction: column;
        gap: 15px;
    }

    header nav ul li a {
        font-size: 1.2em;
    }

    .about h2 {
        font-size: 2.2em;
    }

    .about p {
        font-size: 1.1em;
    }

    .socialContainer {
        flex-direction: column;
        gap: 15px;
    }

    .socialmedia {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    header .nameBar h1 {
        font-size: 2em;
    }

    header nav ul li a {
        font-size: 1.1em;
    }

    .about h2 {
        font-size: 2em;
    }

    .about p {
        font-size: 1em;
    }

    .socialmedia {
        width: 40px;
        height: 40px;
    }
}
