/* ===== Landing Page (extends base.css) ===== */

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    z-index: 10;
}

.typing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    min-height: 80px;
}

.typing-line {
    min-height: 60px;
}

.typing-text {
    font-size: 42px;
    padding-right: 6px;
}

.typing-text.active {
    border-right: 3px solid black;
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: black; }
}

.button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #111;
    color: #fff;
    border: 1px solid #111;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Varela Round', sans-serif;
    cursor: pointer;
    transition: opacity 0.3s ease;
    opacity: 1;
    text-decoration: none;
}

.button:hover {
    opacity: 0.7;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-text {
    color: #000;
}

.x-link {
    color: #000;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
}

.x-link:hover {
    opacity: 0.7;
}

