/* General Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212; /* Dark grey for the background */
    color: #e0e0e0; /* Soft white/grey for text */
    line-height: 1.6;
}

/* Header / Navigation for Night Mode */
header {
    background: linear-gradient(45deg, #ff944d, #ff7300);
    color: #e0e0e0; /* Softer white for text */
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #e0e0e0; /* Light grey for links */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff944d; /* Softer orange on hover */
}

/* Home Section */
#home {
    text-align: center;
    padding: 100px 0;
    background-color: #1e1e1e; /* Dark grey for section background */
    color: #e0e0e0;
}

#home h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

#home p {
    font-size: 1.5em;
    color: #b3b3b3; /* Softer grey for subtext */
}

/* About Section */
#about {
    padding: 60px 20px;
    background-color: #181818; /* Darker grey for contrast */
    text-align: center;
}

#about h2 {
    font-size: 2.8em;
    color: #ff944d; /* Soft orange for headings */
    margin-bottom: 20px;
}

#about p {
    font-size: 1.2em;
    color: #b3b3b3; /* Lighter grey for text */
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Projects Section */
#projects {
    padding: 60px 20px;
    background-color: #1e1e1e; /* Dark grey */
    text-align: center;
}

#projects h2 {
    font-size: 2.8em;
    color: #e0e0e0; /* Light grey */
    margin-bottom: 40px;
}

.project {
    background-color: #2a2a2a; /* Medium grey for card background */
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.project:hover {
    transform: translateY(-10px);
    background-color: #ff7300; /* Soft orange on hover */
    color: #fff;
}

.project h3 {
    font-size: 1.8em;
    color: #e0e0e0;
}

.project p {
    font-size: 1.1em;
    color: #b3b3b3;
}

/* Contact Section */
#contact {
    padding: 60px 20px;
    background-color: #121212; /* Dark grey background */
    text-align: center;
    color: #e0e0e0;
}

#contact h2 {
    font-size: 2.8em;
    color: #ff944d; /* Soft orange for headings */
    margin-bottom: 30px;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #1e1e1e;
    padding: 40px;
    border-radius: 8px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: #2a2a2a; /* Dark grey for inputs */
    font-size: 1.1em;
    color: #e0e0e0; /* Light text in input fields */
}

button {
    padding: 15px 30px;
    background-color: #ff7300;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #ff944d;
}
