@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;700;900&display=swap');

*, body {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    overflow: hidden;
}

.fullscreen-image {
    position: fixed; /* Fixed position to cover the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('landing.jpg'); /* Replace with your image path */
    background-size: cover; /* Cover the entire area, maintaining aspect ratio */
    background-position: center; /* Center the image */
    z-index: -1; /* Place it behind the CTA */
    transform-origin: center 40%; /* Set the zoom origin to 40% from the top */
    animation: zoom 20s linear infinite alternate; /* Zoom animation */
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1); /* Adjust zoom level as needed */
    }
}

.hero-text-container {
    position: absolute;
    bottom: 5%;
    left: 15%; /* 15% from the left edge */
    transform: translateY(-50%); /* Keep vertical centering */
    text-align: left;
    color: white;
    font-size: 4vh;
    font-weight: medium;
    line-height: 1.8; 
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    white-space: nowrap; /* Prevent text wrapping */
}

.hero-text {
    margin: 0;
}

.cta-container {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ffffff;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9em;
    }
    .cta-container {
        bottom: 20px;
    }
    .hero-text-container {
        font-size: 3.5vh; /* Slightly smaller text on mobile if needed, adjust further if needed */
        bottom: 5%; /* Adjust vertical position on smaller screens if needed */
        /*line-height: 1.1; /* Reduce line-height on smaller screens if text becomes too tall */
    }
}