/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000; /* Black background */
    color: #fff;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

/* Fixed Navigation Bar */
.navbar {
    display: flex; /* Flexbox layout */
    justify-content: space-evenly; /* Space out the nav links evenly */
    align-items: center; /* Vertically center the links */
    background-color: #000; /* Black background */
    padding: 15px 0;
    position: fixed; /* Stick the navbar to the top */
    top: 0;
    width: 100%; /* Full width */
    z-index: 1000; /* Make sure it stays on top */
}

.nav-links {
    list-style: none; /* Remove bullets */
    display: flex; /* Flexbox for horizontal layout */
    gap: 20px; /* Add space between the links */
    margin: 0;
}

.nav-links li {
    /* No extra styles needed here */
}

.nav-links a {
    text-decoration: none;
    color: white;
    background-color: #333;
    padding: 10px 20px; /* Add padding around the links */
    border-radius: 5px; /* Rounded corners */
}

.nav-links a:hover {
    background-color: #555; /* Hover effect */
}

/* General Section Styling to Avoid Overlap */
section {
    padding-top: 120px; /* Ensure content starts below the fixed navbar */
    padding-bottom: 50px;
}

/* Profile Section */
.profile-section {
    padding-top: 100px; /* Ensure the content is not hidden under the navbar */
    padding-bottom: 50px;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Circular image */
    border: 4px solid #fff;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
}

/* Social Media Section */
.social-media-section {
    padding: 50px 0;
}

.social-media-section h2 {
    margin-bottom: 20px;
    font-size: 2em;
}

.social-media {
    margin-top: 20px;
}

.social-icon {
    text-decoration: none; /* Ensure no underline */
    color: #fff;
    font-size: 2.5em;
    margin: 0 20px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #00ffff; /* Hover color */
}

/* Contact Section */
#contact {
    background-color: #222;
    padding: 50px 0;
}

#contact h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.button {
    padding: 10px 20px;
    background-color: #00ffff;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}

.button:hover {
    background-color: #00cccc;
}
