@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Bebas+Neue&display=swap');

/* CONTACT HERO */

.contact-hero {

    padding:
        180px
        0
        100px;

    border-bottom:
        1px solid rgba(255,255,255,0.05);

}

.contact-hero h1 {

    font-family: 'Bebas Neue', sans-serif;

    font-size: 6rem;

    line-height: 0.9;

    letter-spacing: 2px;

    margin-bottom: 30px;

}

.contact-intro {

    max-width: 700px;

    color: #bdbdbd;

    line-height: 1.9;

    font-size: 1.05rem;

}

/* CONTACT SECTION */

.contact-section {

    padding:
        100px
        0
        140px;

}

.contact-form {

    display: flex;

    flex-direction: column;

    gap: 25px;

}

.contact-actions {

    display: flex;

    align-items: center;

    gap: 30px;

    margin-top: 10px;

}

.contact-socials {

    display: flex;

    gap: 15px;

    align-items: center;

}

.social-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 50%;

    color: #d5d5d5;

    text-decoration: none;

    font-size: 1.25rem;

    transition: all 0.25s ease;

}

.social-icon:hover {

    color: white;

    border-color: #e50914;

    background: rgba(229,9,20,0.12);

    transform: translateY(-3px);

}

/* FORM */

.contact-form {

    display: flex;

    flex-direction: column;

    gap: 25px;

}

.contact-form label {

    display: block;

    margin-bottom: 10px;

    color: #d5d5d5;

    font-size: 0.95rem;

    font-weight: 500;

}

.contact-form input,
.contact-form textarea {

    width: 100%;

    background: #111;

    border:
        1px solid rgba(255,255,255,0.08);

    color: white;

    padding: 16px;

    font-family: 'Inter', sans-serif;

    transition: 0.25s ease;

}

.contact-form input:focus,
.contact-form textarea:focus {

    outline: none;

    border-color: #e50914;

}

.contact-form textarea {

    resize: vertical;

    min-height: 180px;

}

.contact-submit {

    width: fit-content;

    padding:
        16px
        30px;

    border:
        1px solid rgba(255,255,255,0.08);

    background: transparent;

    color: white;

    cursor: pointer;

    text-transform: uppercase;

    letter-spacing: 2px;

    transition: 0.25s ease;
}

.contact-submit:hover {

    border-color: #e50914;

    color: #e50914;

}

.contact-popup {

    position: fixed;

    bottom: 40px;

    right: 40px;

    background: #111;

    color: white;

    padding: 18px 28px;

    border:
        1px solid rgba(255,255,255,0.1);

    opacity: 0;

    transform: translateY(20px);

    transition: 0.3s ease;

    z-index: 99999;

}

.contact-popup.show {

    opacity: 1;

    transform: translateY(0);

}

/* MOBILE */

@media (max-width: 900px) {

    .contact-grid {

        grid-template-columns: 1fr;

        gap: 70px;

    }

    .contact-hero h1 {

        font-size: 4rem;

    }

}
