/* ======================================================
   YLEISET ASETUKSET
   ====================================================== */

/* Tausta + perusfontti */
body {
    font-family: "Segoe UI", Tahoma, sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e1b4b); /* tumma gradient */
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* ======================================================
   TEKSTIEN VÄRIT (kaikki näkyväksi!)
   ====================================================== */

/* Kaikki tekstit pakotetaan näkyväksi */
body, p, li, ul, ol, small, a, h1, h2, h3, h4, h5, h6 {
    color: #f0f0f0 !important; /* !important varmistaa näkyvyyden */
}

/* Linkit ja hover */
a {
    text-decoration: none;
}
a:hover {
    color: #a5b4fc !important;
}

/* Listat */
ul, ol {
    color: #f0f0f0 !important;
}

/* Otsikot */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* ======================================================
   NAVBAR / VALIKKO
   ====================================================== */

/* Sticky navbar + varjo */
.navbar.sticky-top {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

/* Sivuston nimi */
.navbar-brand {
    font-size: 1.3rem;
    letter-spacing: 1px;
}

/* Navigaatiolinkit */
.nav-link {
    color: #e0e7ff !important;
    margin-left: 10px;
}

/* Hover efekti linkeille */
.nav-link:hover {
    color: #a5b4fc !important;
    text-decoration: underline;
}

/* Aktiivinen sivu */
.nav-link.active {
    font-weight: bold;
    text-decoration: underline;
}

/* ======================================================
   SISÄLTÖALUE
   ====================================================== */

/* Maksimileveys ja marginaalit */
.container {
    max-width: 1100px;
}

/* Tekstikappaleet */
p {
    font-size: 1.05rem;
    margin-bottom: 16px;
}

/* ======================================================
   LISTAT
   ====================================================== */

/* Listaryhmät (Bootstrap) */
.list-group-item {
    background-color: transparent;
    color: #f0f0f0 !important;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ======================================================
   FOOTER
   ====================================================== */

footer {
    background-color: rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    opacity: 0.9;
    padding: 10px 0;
}

/* ======================================================
   MOBIILIHIENOUS
   ====================================================== */

/* Mobiilissa keskitetään valikko ja linkit */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }

    .nav-link {
        margin: 10px 0 !important;
    }
}
/* =========================
   LIGHTBOX
   ========================= */

.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);

    /* Keskittää sisällön */
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Lightbox-kuva */
.lightbox img {
    max-width: 90%;
    max-height: 80%;
    margin-bottom: 15px;
    border-radius: 8px;
}

/* Kuvateksti */
#lightbox-caption {
    color: #ffffff;
    font-size: 1rem;
    text-align: center;
}

/* Sulkunappi */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* Hover-efekti galleriakuville */
.card-img-top {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.card-img-top:hover {
    transform: scale(1.05);
}

/* ======================================================
   YOUTUBE-VIDEO (EMBED)
   ====================================================== */

/* ======================================================
   VIDEO
   ====================================================== */

.video-wrapper {
    width: 100%;
    max-width: 640px; /* sopiva leveys desktopilla */
    margin: 10px auto 40px auto; /* keskitys + tilaa ylä- ja alapuolelle */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

/* Mobiili */
@media (max-width: 768px) {
    .video-wrapper {
        max-width: 100%;
    }
}