/* RESET & BASIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* HEADER / NAVBAR */
header {
    background: #fff;
    padding: 20px 40px;
    border-bottom: 5px solid #000;
    min-height: 80px;
    max-height: 80px;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 40px;
}

nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
}

nav a {
    background: #111;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
}

nav a:hover,
nav a.active {
    background: #555;
}

.login-link {
    background: #111;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
}

.login-link:hover {
    background: #555;
}

/* MAIN CONTENT */
main {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    flex: 1;
}

h1 {
    color: #454545;
    font-size: 36px;
    font-family: Georgia, serif;
    text-align: center;
    margin-bottom: 40px;
}

/* CONTACT FORM */
.center-container {
    margin: 0 auto;
    width: 90vw;
    max-width: 650px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

textarea {
    height: 120px;
    resize: vertical;
}

button {
    background: #222;
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
}

button:hover {
    background: #555;
}

.image {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
footer {
    background: #454545;
    color: #fff;
    padding: 40px 20px;
    border-top: #0e0e0e 3px solid;
}

.footer-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-logo svg {
    width: 120px;
}

.footer-contact {
    text-align: center;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social img {
    width: 28px;
    height: 28px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #ddd;
}

@media (max-width: 800px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        margin-left: 0;
    }
}
