*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.main-content {
    margin-top: 100px; /* Wysokość headera, gdy menu jest zamknięte */
    transition: margin-top 0.1s ease;
    max-width: 100%;
}

body.menu-open .main-content {
    margin-top: 270px; /* Wysokość headera, gdy menu jest otwarte (powinna odpowiadać max-height z nav.menu-open) */
}

/* Stylizacja kontenera */
.contact-container {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
    font-family: 'Fredoka', Arial, sans-serif;
}

/* Nagłówek */
.contact-container h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

/* Wiadomości flash */
.flashes {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.flashes li {
    background-color: #f86969;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

/* Formularz */
.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 5px;
}

.form-group label {
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Fredoka', Arial, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f86969;
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.description {
    font-size: small;
    margin-bottom: 15px;
    text-align: justify;
    font-family: 'Fredoka', Arial, sans-serif;

}

a {
    text-decoration: none;
    color: #f86969;
}

a:hover {
    text-decoration: underline;
}

/* Przyciski */
.submit-button {
    background-color: #000000;
    color: #fff;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    font-family: 'Fredoka', Arial, sans-serif;
    font-weight: bold;
}

.submit-button:hover {
    background-color: #4d4d4d;
}
@media (max-width: 800px) {
    .main-content {
        margin-top: 160px; /* Wysokość headera, gdy menu jest zamknięte */

    }
}
@media (max-width: 600px) {
    .contact-container {
        width: 90%;
        padding: 20px 0;
    }

    .contact-container h1 {
        font-size: 28px;
    }

    .form-group label {
        font-size: 16px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }

    .submit-button {
        font-size: 16px;
        padding: 12px;
    }
}
