@charset "utf-8";
/* CSS Document */

/* Base styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #ffffff;
    background-color: #0d1b2a; /* Deep Blue */
}

header {
    text-align: center;
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    padding: 20px;
    color: #e0e1dd; /* Light contrasting text */
}

header img {
    max-width: 100%;
    height: auto;
}

h1, h2 {
    font-family: 'Trebuchet MS', sans-serif;
    margin-bottom: 10px;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.portfolio-grid .item {
    text-align: center;
    background-color: #1e2d3e; /* Darker accent */
    padding: 10px;
    border-radius: 8px;
}

.portfolio-grid img {
    max-width: 100%;
    border-radius: 5px;
}

form label {
    display: block;
    margin: 10px 0 5px;
}

form input, form textarea, form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

form button {
    background-color: #f77f00; /* Orange button */
    color: #ffffff;
    cursor: pointer;
}

form button:hover {
    background-color: #d65a00;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #1b263b;
}
