html,
body {
    height: 100%;
    font-family: 'Outfit', sans-serif;
    background-color: #000;
    scroll-behavior: smooth;
    color: white;
}

.landing {
    background-image: url('../img/emily-bernal-BM3U_D2lygo-unsplash.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    padding: 2rem;
}

.landing::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.4s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.tagline {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: -1rem;
    margin-bottom: 2rem;
}

.logo-landing {
    max-width: 500px;
    margin-bottom: 2rem;
}

.btn {
    background-color: #a77df0;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(167, 125, 240, 0.4);
    display: inline-block;
    margin: 0.5rem;
}

.btn:hover {
    background-color: #ffffff;
    color: #a77df0;
    box-shadow: 0 0 20px rgba(167, 125, 240, 0.8);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .content h1 {
        font-size: 2.4rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}