/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    overflow: hidden;
    /* Prevent scrolling for the single view */
    height: 100vh;
    width: 100vw;
}

/* Background Handling */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease-out infinite alternate;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 100%);
}

/* Main Content Layout */
.content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 3rem;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo-container {
    padding-top: 1rem;
    animation: fadeInDown 1.2s ease-out;
}

.logo {
    height: 85px;
    /* Increased size based on user feedback */
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Hero Text */
.hero-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    /* Align items to the right */
    text-align: right;
    /* Align text to the right */
    margin-left: auto;
    /* Push to the right side */
    padding-right: 2rem;
    /* Spacing from edge */
    animation: fadeInUp 1.2s ease-out 0.3s backwards;
}

.slogan {
    font-size: 3.5rem;
    letter-spacing: -0.01em;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #ffffff;
    /* Stronger text shadow for contrast against bright sky */
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.sub-slogan {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
    max-width: 600px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.2);
    /* Subtle backing for readability */
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

/* CTA Button */
.cta-button {
    align-self: flex-end;
    /* Align button to the right */
    margin-right: 2rem;
    /* Align with text padding */
    margin-bottom: 5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    /* Bolder for better visibility */
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeInUp 1.2s ease-out 0.6s backwards;

    /* Ensure button stands out */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.cta-button:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
        /* Very subtle movement */
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content {
        padding: 2rem;
        align-items: center;
        text-align: center;
    }

    .hero-text {
        align-items: center;
    }

    .cta-button {
        align-self: center;
        margin-bottom: 3rem;
    }

    .slogan {
        font-size: 3rem;
    }

    .sub-slogan {
        font-size: 1.1rem;
    }
}