/* CONTACT SLIDE */
.slide.contact {
    position: relative;
    overflow: hidden;
    background: #000;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 115, 0, 0.05) 0%, rgba(0, 0, 0, 0.95) 70%);
    z-index: 1;
    overflow: hidden;
}

/* Glow effects */
.glow-effect {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 115, 0, 0.3) 0%, rgba(255, 115, 0, 0.1) 40%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    will-change: transform, opacity;
}

#contact-galaxy-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

#contact-galaxy-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.contact-content h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1rem;
    color: white;
    filter: drop-shadow(0 0 8px rgba(255, 115, 0, 0.3));
    font-weight: 400;
}

.contact-description {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
    text-align: center;
    padding: 0 1rem;
    color: white;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 115, 0, 0.1);
    border-radius: 35px;
    border: 1px solid #ddd;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    font-weight: 300;
    font-family: var(--font);
    font-size: 1.1rem;
    cursor: pointer;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 1));
}

.contact-btn:hover {
    background-color: rgba(255, 115, 0, 0.25);
    border: 1px solid rgb(255, 210, 173);
    color: rgb(255, 227, 204);
    transform: translateY(-5px);
}

.contact-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
    transition: fill 0.2s ease-in-out;
}

.contact-btn:hover svg {
    fill: rgb(255, 227, 204);
}

@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
    }
    
    .contact-btn {
        padding: 7px 14px;
        font-size: 0.8rem;
    }
}

