/* Importing Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #121212; /* Dark theme background */
    color: #e0e0e0; /* Light text for contrast */
}

/* Navigation */
nav {
    background: linear-gradient(45deg, #333, #444); /* Gradient for a smoother look */
    color: white;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

main {
    margin-top: 70px; /* Ensure the main content is not hidden behind the fixed header */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
}

section {
    padding: 80px 20px 40px 20px; /* Add extra padding at the top */
}

/* Home Section Styles */
#home {
    background: linear-gradient(rgba(18, 18, 18, 0.5), rgba(18, 18, 18, 0.5)), url('images/dark-wooden-texture-surface.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#home h2 {
    font-size: 36px; /* Adjusted font size */
}

#home h3 {
    font-size: 24px; /* Adjusted font size */
    color: #bbbbbb; /* Light grey for better contrast */
}

#home p {
    font-size: 18px; /* Adjusted font size */
    margin: 10px 0;
    color: #bbbbbb; /* Light grey for better contrast */
}

#home a[role="button"] {
    background-color: #33006F; /* Rockies purple color */
    color: white;
    border: none;
    padding: 10px 20px; /* Adjusted padding */
    border-radius: 5px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
    margin: 10px;
    font-size: 16px; /* Adjusted font size */
}

#home a[role="button"]:hover {
    background-color: #4b0082; /* Slightly lighter purple on hover */
    color: #121212;
}

/* About Section Styles */
#about {
    text-align: center;
    background: linear-gradient(45deg, #1f1f1f, #2c2c2c); /* Gradient for a smoother look */
    color: #e0e0e0;
    padding: 40px 20px 60px 20px; /* Adjusted top and bottom padding */
    margin-top: 20px; /* Additional margin to ensure visibility */
}

#about img {
    width: 150px;
    border-radius: 50%;
    margin-top: 20px;
    margin-bottom: 20px; /* Additional margin below the image */
    border: 2px solid #33006F; /* Rockies purple border */
}

/* Project, Experience, Certification, Education Sections Styles */
.project, .experience, .certification, .education {
    background: #2c2c2c;
    border: 1px solid #333;
    padding: 20px;
    margin: 20px 0; /* Adjusted margin */
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: white;
}
