html.landing-html {
    height: 100%;
    overflow: hidden;
}

body.landing-page {
    margin: 0;
    padding: 0 !important;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #1a1a1a;
    color: #fff;
    font-family: 'Archivo', sans-serif;
}

body.landing-page header {
    position: static !important;
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
    padding: 0 !important;
}

.landing-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.background-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.background-images img {
    position: absolute;
    opacity: 0.2;
    transition: transform 0.5s ease-out;
    max-width: 200px; /* Smaller images */
    max-height: 200px;
    border-radius: 10px;
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
     padding: 2rem 0;
     box-sizing: border-box;
    align-items: center;
    height: 100%;
    text-align: center;
}

.landing-header {
    margin-bottom: 2rem;
}

.landing-logo {
    width: 100px;
    filter: invert(1);
}

.landing-title {
    font-size: 4rem;
    margin: 0;
}

.nav-buttons .button {
    display: inline-block;
    padding: 1rem 2rem;
    margin: 0 1rem;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s, color 0.3s;
}

.nav-buttons .button:hover {
    background-color: #fff;
    color: #1a1a1a;
}

footer {
     position: static; /* Override position from style.css for landing page */
 }