:root {
    --one: #1c1c1e;
    --two: #303133;
    --three: #4e4e4f;
    --four: #f17300ff;
    --five: #ff6b81;
    --text: #e0e0e0;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: var(--one);
    color: var(--text);
}

/* Navigation */
header {
    background-color: var(--two);
    padding: 1rem;
    text-align: center;
}

nav {
    display: flex;
    justify-content: center;
    background-color: var(--three);
    padding: 1rem;
}

nav a {
    color: var(--four);
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffffff;
}

/* Main Content Sections */
.container {
    width: 80%;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--two);
    border-radius: 10px;
}

.project {
    background-color: var(--three);
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.project img {
    max-width: 300px;
    margin-right: 1.5rem;
    border-radius: 8px;
}

.project-details {
    flex-grow: 1;
}

.project-title {
    color: var(--four);
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    background-color: var(--three);
    border: 1px solid var(--four);
    color: #e0e0e0;
}

.contact-form button {
    background-color: var(--four);
    color: white;
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: var(--five);
}

/* Responsive Design */
@media (max-width: 768px) {
    .project {
        flex-direction: column;
        text-align: center;
    }

    .project img {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .container {
        width: 95%;
        padding: 1rem;
    }
}