/**
 * Contact Template Styles
 *
 * Same visual style as .proyecto-flip-back (credits)
 *
 * @package Propaganda_v2
 */

.contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 0 16px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-name {
    font-family: 'TWK Lausanne', sans-serif;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: normal;
    text-align: center;
    color: #000;
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-content a {
    font-family: 'TWK Lausanne', sans-serif;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
    text-align: center;
    text-decoration: underline;
    color: #000;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

@media (hover: hover) {
    .contact-content a:hover {
        transform: scaleX(-1);
    }
}

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 768px) {
    .contact-name,
    .contact-content a {
        font-size: 12px;
    }
}

/* ============================================
   NIGHT MODE
   ============================================ */
body.night-mode .contact-name {
    color: #fdfdfd;
}

body.night-mode .contact-content a {
    color: #fdfdfd;
}
