/* UnLockDesire - Home page
 * Page-specific styles extracted from index.html.
 */

body {
    background-color: var(--brand);
    color: var(--text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 20px;
    font-size: 1.08rem;
    line-height: 1.45;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s ease forwards;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background-color: var(--brand-dark);
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 20px;
}

footer a svg {
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease, fill 0.2s ease;
}

footer a:hover svg {
    transform: scale(1.1);
    fill: var(--accent);
}

.copyright {
    font-size: 0.85rem;
    color: #ccc;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    main {
        font-size: 1rem;
    }
}


.experiences-link {
    margin: 1.5rem 0 0;
}

.experiences-link a {
    font-weight: 600;
    text-decoration: none;
}

.experiences-link a:hover {
    text-decoration: underline;
}

/* Compact home viewport */
body {
    min-height: 100dvh;
}
main {
    min-height: 0;
}
footer {
    padding: 8px 15px;
    gap: 6px;
}
@media (max-height: 800px) and (min-width: 700px) {
    main {
        padding-top: 8px;
        padding-bottom: 8px;
        font-size: 1rem;
        line-height: 1.35;
    }
    footer a svg {
        width: 26px;
        height: 26px;
    }
}

