/* CONTACT SECTION */
.contact-section {
    flex: 1;
    padding: 80px 40px;
    text-align: center;
}

/* TITLE */
.contact-section h2 {
    font-family: 'GrizeSportsDemo', sans-serif;
    font-size: 3rem;
    margin-bottom: 70px;
    color: black;
}

/* BOX WRAPPER */
.contact-options {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
}

/* SINGLE CARD */
.contact-box {
    width: 260px;
    padding: 35px 25px;
    background: rgba(0,0,0,0.85);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.3s ease;
    color: white;
}

.contact-box:hover {
    transform: translateY(-10px);
}

/* ICON */
.icon {
    font-size: 50px;
    margin-bottom: 20px;
}

/* CARD TITLE */
.contact-title {
    font-family: 'GrizeSportsDemo', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #62ffa3;
}

/* CARD TEXT */
.contact-text {
    font-size: 1rem;
    color: #e5e5e5;
}

/* FORMULAR BOX */
.extra-box {
    margin-top: 80px;

    width: 100%;
    max-width: 700px;

    margin-left: auto;
    margin-right: auto;

    padding: 40px;

    background: rgba(0,0,0,0.85);

    border-radius: 25px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ÜBERSCHRIFT */
.extra-box p {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #62ffa3;
    font-family: 'GrizeSportsDemo', sans-serif;
}

/* FORM */
.extra-box form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* INPUTS */
.extra-box input,
.extra-box textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

/* TEXTAREA */
.extra-box textarea {
    min-height: 180px;
    resize: vertical;
}

/* BUTTON */
.extra-box button {
    padding: 15px;
    background: #62ffa3;
    color: black;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.extra-box button:hover {
    background: white;
    transform: scale(1.03);
}

/* MOBILE */
@media (max-width: 768px) {

    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .contact-box {
        width: 90%;
        max-width: 320px;
    }

    .contact-section h2 {
        font-size: 2.2rem;
    }

    .extra-box {
        padding: 25px;
    }

    .extra-box p {
        font-size: 1.6rem;
    }
}