body.contact-page {
    padding-bottom: 0;
    overflow: hidden;
}

body.contact-page footer {
    position: fixed;
}

#contact {
    max-width: 60rem;
    margin: 0;
    text-align: left;
}

#contact h2 {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    margin-bottom: 3rem;
    color: #666;
}

#contact p {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

#contact a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
}

.contact-button {
    display: inline-block;
    margin-top: 3rem;
    padding: 1.5rem 4rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    border: 1px solid #000;
    border-radius: 3rem;
    box-shadow: 0.4rem 0.4rem 0 #000;
    position: relative;
    overflow: hidden;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, #d4c9f4 0%, rgba(212, 201, 244, 0) 70%);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    filter: blur(1.5rem);
    z-index: 0;
}

.contact-button span {
    position: relative;
    z-index: 1;
}

.contact-button:hover::before {
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        width: 0%;
        height: 0%;
    }
    50% {
        width: 200%;
        height: 200%;
    }
}

.contact-button:hover {
    color: #000;
    transform: translate(0.2rem, 0.2rem);
    box-shadow: 0.2rem 0.2rem 0 #000;
}

.contact-button:active {
    transform: translate(0.4rem, 0.4rem);
    box-shadow: 0 0 0 #000;
}
