/* ===== CSS Custom Properties ===== */
:root {
    --color-text-button: rgba(25, 24, 98, 1);
    --font-display: 'Bebas Neue', sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-display);
    background-color: #1a0033;
}


/* ===== Main Landing ===== */
.landing {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* ===== Background ===== */
.background-container {
    position: absolute;
    inset: 0;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* ===== Header / Logo ===== */
.site-header {
    position: absolute;
    top: 20px;
    left: 24px;
    z-index: 15;
}

.logo-link {
    display: inline-block;
}

.logo-img {
    width: 180px;
    height: auto;
    object-fit: contain;
}

/* ===== CTA Button ===== */
.cta-container {
    position: absolute;
    z-index: 10;
    /* Desktop: button positioned based on Figma coordinates */
    top: 80%;
    left: 76%;
    transform: translate(-50%, -50%);
}

.cta-button {
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.cta-button:hover {
    transform: scale(1.05);
}

.cta-button:focus-visible {
    outline: 3px solid #D4FF00;
    outline-offset: 4px;
    border-radius: 40px;
}

.cta-img {
    display: block;
    width: 218px;
    height: 79px;
}

/* ===== Arrow ===== */
.arrow-container {
    position: absolute;
    z-index: 9;
    /* Arrow positioned to point toward the CTA button */
    top: 76%;
    left: 66%;
    transform: translate(-50%, -50%);
}

.arrow-img {
    display: block;
    width: 186px;
    height: 105px;
}

/* ===== Footer ===== */
.site-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.rta-link {
    display: inline-flex;
    align-items: center;
}

.rta-icon {
    width: 34px;
    height: 20px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-links a {
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .landing {
        height: 100vh;
        height: 100dvh;
    }

    .bg-img {
        object-fit: cover;
        object-position: center center;
    }

    .site-header {
        display: none;
    }

    .cta-container {
        /* Mobile: button at fixed distance from top - 43% */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .cta-img {
        width: 195px;
        height: 70px;
    }

    /* Hide arrow on mobile */
    .arrow-container {
        display: none;
    }

    .site-footer {
        padding: 8px 16px;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
    }

    .footer-content {
        gap: 12px;
    }

    .rta-icon {
        width: 28px;
        height: 16px;
    }

    .footer-links a {
        font-size: 11px;
    }
}