/* Reset some basic elements */
body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
}

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

/* Header styling */
header {
    background: linear-gradient(90deg, #ff8c42, #ff5733); /* More orange gradient */
    color: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
}

header p {
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Navigation styling */
nav {
    background: #141414;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

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

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #00aaff; /* Light blue for links */
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #66cfff; /* Even lighter blue on hover */
}

/* Section styling */
section {
    width: 80%;
    max-width: 800px;
    padding: 40px 20px;
    margin: 20px auto;
    background: #2c2c2c;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Skills section styling */
.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adds space between skill items */
}

.skill-item {
    flex: 1 1 45%; /* Makes each skill item take up 45% of the width */
    background: #333;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Footer styling */
footer {
    background: #141414;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Links styling */
a {
    color: #00aaff; /* Light blue for all links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #66cfff;
}

