.section-fullscreen#contact {
    display: block;
    color: var(--white);
    position: relative;
    height: auto;
    padding-top: 0;
}

.contact--content-wrapper {
    width: 100%;
}

.contact--container {
    width: 100%;
    max-width: 1800px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 15em;
    row-gap: 2em;
    padding: 15vh 6vw 0;
    margin: 0 auto;
}

.contact--container h4 {
    font-family: var(--font-main);
    color: var(--white);
    font-size: 9rem;
    font-weight: 500;
    line-height: 1.1;
    text-align: left;
    grid-column: 2;
}

.contact--container p {
    grid-column: 2;
    justify-self: start;
    text-align: left;
    color: var(--subtext--color);
    line-height: 1.6;
    max-width: 75ch;
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.8;
}

.contact--email-link {
    grid-column: 2;
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-main);
    font-size: 5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.39);
    transition: color 0.4s ease;
}

.contact--email-link:hover {
    color: var(--white);
}

.contact--email-link .arrow--icon {
    stroke: var(--white);
    opacity: 0.4;
    transition: opacity 0.4s ease, transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

.contact--email-link:hover .arrow--icon {
    opacity: 1;
}

.contact--form {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5em 2em;
    margin-top: 4em;
    width: 100%;
}

.form--group-full:has(#contact--form-status) {
    margin-top: -1.5em;
}

#contact--form-status {
    padding-top: 1em;
    font-size: 1rem;
}

.form--status-success {
    color: #4caf50;
}

.form--status-error {
    color: #f44336;
}

.form--group {
    position: relative;
}

.form--group-full {
    grid-column: 1 / -1;
}

.contact--form input,
.contact--form textarea {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 5px;
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--white);
    transition: border-bottom-color 0.3s ease;
}

.contact--form input:focus,
.contact--form textarea:focus {
    outline: none;
    border-bottom-color: var(--white);
}

.contact--form ::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact--form textarea {
    resize: vertical;
}

.contact--form button[type="submit"] {
    justify-self: start;
    margin-top: 1em;
}

.contact--form-submit {
    background-color: var(--text--color);
    color: black;
    padding: 1rem 4rem;
    border-radius: 50px;
    border: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: background-color 0.3s ease;
    cursor: pointer;
    z-index: 999;
}

.contact--form-submit:hover {
    background-color: #ccc;
}

.contact--form-submit .btn--anim-content-wrapper {
    line-height: 1;
}

.contact--marquee {
    width: 100vw;
    position: relative;
    overflow: hidden;
    display: flex;
    color: var(--white);
    white-space: nowrap;
    --scroll-direction: normal;
}

.socials--medias-container {
    grid-column: 1 / -1;
    width: 85%;
    margin: 10em auto;
}

.socials--medias-container hr {
    border: none;
    height: 1px;
    background-color: var(--white);
    opacity: 0.2;
}

.social--link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5em 0;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 500;
    transition: opacity 0.4s ease, filter 0.4s ease;
}

.socials--medias-container:hover .social--link {
    opacity: 0.4;
    filter: blur(2px);
}

.socials--medias-container .social--link:hover {
    opacity: 1;
    filter: blur(0);
}

.social--link .arrow--icon {
    stroke: var(--white);
}

.hover--image-container {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow: hidden;
    border-radius: 15px;
}

.hover--image-container.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.hover--image-container img {
    width: 100%;
}