/* Yleiset tyylit */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    overflow: hidden;
    background: black;
    transition: background 1s ease;
}

/* Video */
#video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#bg-video {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    position: absolute;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Alussa tummennettu */
    transition: opacity 1s ease;
}

/* Alkutekstit ja painike */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    transition: opacity 1s ease;
}

/* Pääotsikko */
h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Alaotsikko */
p {
    font-size: 1.5rem;
    margin: 10px 0;
}


/* Painikkeet */
#enter-button, #order-button, #toggle-video {
    padding: 15px 30px;
    background-color: #ff6600;
    color: white;
    font-size: 1.2rem;
    font-weight: bold; /* Lihavointi */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Varjostus */
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

#enter-button:hover, #order-button:hover, #toggle-video:hover {
    background-color: #cc5200;
}


/* Tilaa koulutus -painike */
#order-button {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

/* Video pysäytys/käynnistyspainike */
#toggle-video {
    position: fixed;
    bottom: 50px;
    right: 20px;
    display: none;
}

/* Alapalkki */
#footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: rgba(128, 128, 128, 0.7);
    color: white;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Linkki alapalkissa */
#footer-bar a {
    color: white;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

#footer-bar a:hover {
    color: #ffcc00;
    text-decoration: underline;
}

/* Pysäytä/Käynnistä -painike */
#toggle-video {
    background-color: #007bff; /* Sininen väri */
    color: white;
    font-size: 1.2rem;
    font-weight: bold; /* Lihavointi */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Varjostus */
    padding: 15px 30px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    position: fixed;
    bottom: 50px;
    right: 20px;
    display: none;
}

/* Hover-efekti */
#toggle-video:hover {
    background-color: #0056b3; /* Tummempi sininen hoverissa */
}
