/* ============================================
   LAYOUT.CSS - Glassmorphism Contact & Footer
   ============================================ */

/* Contact Section */
#contact {
    text-align: center;
}

#contact p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-link {
    width: 110px;
    height: 110px;
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.social-link:nth-child(1) { color: var(--accent-pink); }
.social-link:nth-child(2) { color: var(--accent-purple); }
.social-link:nth-child(3) { color: var(--accent-blue); }
.social-link:nth-child(4) { color: var(--accent-pink); }
.social-link:nth-child(5) { color: var(--accent-purple); }

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(196, 113, 237, 0.2);
    background: var(--glass-white-strong);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text);
}

/* Footer */
footer {
    background: rgba(10, 8, 32, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    padding: 2rem;
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* ===================
   RESPONSIVE DESIGN
   =================== */
@media (max-width: 768px) {
    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 90px;
        height: 90px;
        font-size: 0.9rem;
    }
}
