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

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #2c3e50; /* Koyu arka plan rengi */
    color: #ecf0f1; /* Açık renk yazılar */
}

header {
    background-color: #556b2f; /* Haki yeşil */
    color: #f1c40f; /* Altın sarısı */
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

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

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: #f1c40f; /* Altın sarısı */
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #6b8e23; /* Daha koyu haki yeşil */
    border-radius: 5px;
}

main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    margin: 2rem 0;
    background-color: #34495e; /* Daha koyu gri-mavi ton */
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #556b2f; /* Haki yeşil */
    color: #f1c40f; /* Altın sarısı */
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-top: 1rem;
    font-weight: bold;
}

form input, form textarea {
    padding: 0.75rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    color: #2c3e50; /* Koyu renk yazılar */
}

form button {
    margin-top: 1rem;
    padding: 0.75rem;
    background-color: #f1c40f; /* Altın sarısı */
    color: #2c3e50; /* Koyu yazılar */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #e1b12c; /* Daha koyu altın sarısı */
}