/* ----------- PAGE TRANSITIONS ----------- */

body {
    margin: 0;
    background: #1a1a1d;
    font-family: 'Poppins', sans-serif;
    color: #eee;

    /* default state */
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* when leaving the page */
body.fade-out {
    opacity: 0;
    transform: translateX(-40px);
}

/* when entering the page (optional, for clarity) */
body.fade-in {
    opacity: 1;
    transform: translateX(0);
}

/* ----------- BACK BUTTON ----------- */

.top-bar {
    padding: 20px;
}

.back-btn {
    background: #D8A7B1;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    color: #1a1a1d;
    transition: 0.3s;
}

.back-btn:hover {
    background: white;
}

/* ----------- TITLE ----------- */

.page-title {
    text-align: center;
    margin-top: 30px;
    font-size: 36px;
    color: #D8A7B1;
}

/* ----------- CONTACT CONTENT ----------- */

.contact-wrapper {
    max-width: 700px;
    margin: 40px auto;
    text-align: center;
}

.contact-sub {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
}

.contact-box {
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #D8A7B1;
    border-radius: 15px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(6px);
}

.contact-box h2 {
    margin-bottom: 10px;
    color: #F2C6D2;
}

.contact-link {
    color: #D8A7B1;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-link:hover {
    color: white;
    text-shadow: 0 0 10px #D8A7B1;
}

/* ----------- MOBILE ----------- */

@media (max-width: 600px) {
    .page-title {
        font-size: 28px;
    }
    .contact-link {
        font-size: 18px;
    }
}
