.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
    margin: 2rem auto;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    background-color: white;
    resize: vertical;
}

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

.contact-form button {
    padding: 0.75rem;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-family: "Oswald", sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: red;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem;
}

.socials {
    max-height: 3rem;
    vertical-align: middle;
    filter: brightness(1) saturate(1);
    transition: filter 0.3s ease;
}

.socials:hover {
    filter: invert(27%) sepia(95%) saturate(7500%) hue-rotate(-10deg) brightness(.9);
    transform: scale(110%);
}




/* Banner */
main {
    position: fixed;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #111;
    border-bottom: 4px solid #ef0000;
}



/* Checkered flag strip */
main::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-conic-gradient(#1a1a1a 0% 25%, #222 0% 50%);
    background-size: 32px 32px;
    opacity: 0.55;
}



/* Red speed-lines overlay */
main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 20%,
        rgba(239, 0, 0, 0.08) 50%,
        transparent 80%
    );
    pointer-events: none;
}

.banner-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2.5rem 1rem 2rem;
}

.banner-inner h2 {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(2rem, 6vw, 4rem);
    color: #fff;
    margin: 0 0 0.35em;
    text-shadow: 0 0 30px rgba(239,0,0,0.55), 2px 2px 0 #000;
}

.banner-inner p {
    color: #ccc;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    margin: 0;
    letter-spacing: 0.02em;
}