/* Eltaris — strona kontaktu */

.contact-hero {
    text-align: center;
    padding: clamp(0.75rem, 2vh, 1.5rem) 1.5rem 0;
}

.contact-hero__title {
    margin: 0;
    font-family: "Cinzel", serif;
    font-size: clamp(1.35rem, 2.8vw, 2.1rem);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.contact-hero__quote {
    margin: 0.55rem auto 0;
    max-width: 540px;
    font-family: "Cinzel", serif;
    font-style: italic;
    font-size: clamp(0.8rem, 1.3vw, 0.95rem);
    color: rgba(255, 255, 255, 0.82);
}

.contact {
    flex: 1;
    width: min(620px, 92vw);
    margin: 0 auto;
    padding: clamp(1.25rem, 3vh, 2rem) 0 clamp(1.5rem, 4vh, 2.5rem);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-form__row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-form__label {
    font-family: "Cinzel", serif;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.contact-form__opt {
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
    letter-spacing: 0.06em;
    text-transform: none;
}

.contact-form__input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    font-family: "Lato", sans-serif;
    font-size: 0.9rem;
    color: #f0ece4;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 3px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact-form__input:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.5;
}

/* Pole-pułapka na boty — niewidoczne dla ludzi. */
.contact-form__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.contact-form__submit {
    align-self: flex-start;
    margin-top: 0.25rem;
    padding: 0.6rem 1.5rem;
    font-family: "Cinzel", serif;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--gold);
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.contact-form__submit:hover {
    background: rgba(212, 175, 55, 0.18);
    color: #fff;
}

.contact-form__submit:disabled {
    opacity: 0.5;
    cursor: default;
}

.contact-form__status {
    margin: 0;
    min-height: 1.2em;
    font-size: 0.85rem;
    font-family: "Lato", sans-serif;
}

.contact-form__status--ok {
    color: #8fe39a;
}

.contact-form__status--err {
    color: #e9908f;
}
