/* VARIABLES CSS */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #2c3e50;
    --background-color: #f8f8f8;
    --text-color: #333;
    --text-color-light: #555;
    --icon-color: #2c3e50;
    --button-hover-color: #34495e;
    --input-icon-spacing: 35px;
    --spacing-sections: 5rem
  }

  .landing.page {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing.page video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    z-index: 0;
    pointer-events: none;
    transform: translate(-46%, -30%) scale(5.2);
    transform-origin: center center;
    background: #000;
}

.landing-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background: rgba(255, 255, 255, 0.644); 
    pointer-events: none;
}

.landing-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;      
    text-align: center;
    color: #fff;
    transform: translateY(-20vh); 
    transition: transform 0.3s;
}


.landing-content h1 {
    font-size: 2.5rem;
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
    margin-bottom: 1rem;
    align-self: center;
}

.button-container {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
}


.button-container button {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: #fff;
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    margin-bottom: 1rem;
}

.button-container button:last-child {
    margin-bottom: 0;
}

.button-container button:hover {
    background-color: var(--button-hover-color);
    border-color: var(--button-hover-color);
    color: #fff;
}
  
  
@media (min-width: 900px) {

    .landing-content {
        transform: translateY(0);
    }

    

}