* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    background-image: url("../img/landing.avif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    max-width: 900px;
}

.brand,
.subtitle,
.typing,
.icon-contact {
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
}

.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 1s ease, transform 1s ease;
}

.brand {
    font-size: clamp(3.2rem, 8vw, 6rem);
    letter-spacing: 0.22em;
    opacity: 0.5;
}

.subtitle {
    margin-top: 10px;
    font-size: 1rem;
    letter-spacing: 0.35em;
    font-weight: normal;
    opacity: 0.85;
}

.typing {
    margin-top: 30px;
    font-size: 1.05rem;
    min-height: 2.4em;
    opacity: 0.9;
}

.icon-contact {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 1.8rem;
}

.icon-contact a {
    color: #ffffff;
    text-decoration: none;
}

.icon-contact a:hover {
    opacity: 0.75;
}

.info-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.8rem;
    background: rgba(0,0,0,0.45);
    color: #d0d0d0;
    z-index: 3;
}

@media (max-width: 768px) {
    .content {
        padding-bottom: 90px;
    }

    .typing {
        display: none;
    }
}
