/* Perusasetukset */
body {
    font-family: Arial, sans-serif;
    background-color: #2c2c2e;
    /* Hieman vaaleampi tumma tausta */
    color: #e0e0e0;
    /* Vaalea teksti, hyvä luettavuus */
    margin: 0;
    padding: 0;
}

/* Header ja navigointi */
header {
    background-color: #1c1c1e;
    /* Tumma header */
    padding: 15px 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #e0e0e0;
    /* Vaalea linkkiteksti */
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #eee9e9;
    /* Hover-efekti, hieman vaaleampi väri */
}

a {
    text-decoration: none;
}


/* Pääosio */
main {
    margin: 20px;
    text-align: center;
}

/* About Me -osio */
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Kohdennetaan vain About Me -sivun sisältö */
.about-me {
    width: 35%;
    /* Leveys voi olla mitä tahansa, mikä sopii ulkoasuun, esim. 50%-70% */
    margin: 0 auto;
    /* Keskittää .about-me-divin ruudun keskelle */
    text-align: left;
    /* Tasaa tekstin vasemmalle */
    line-height: 1.6;
    /* Antaa riviväliä, jotta teksti on luettavampaa */
    color: #E0E0E0;

    padding-top: 40px;
}

.about-section img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}

.about-section p {
    max-width: 600px;
    font-size: 18px;
    line-height: 1.6;
    color: #e0e0e0;
}

.about-section a {
    color: #d6d5d3;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.about-section a:hover {
    color: #d6d5d3;
}

/* Galleriasivu, kolme kolumnia suuremmilla näytöillä */
.gallery-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item img {
    max-width: 640px;
    max-height: 900px;
    width: 70%;
    height: 70%;
    border-radius: 0px;
    padding: 25px;
    /* Lisää tilaa kuvien ympärille */
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-item h3 {
    margin-top: 10px;
    color: #d6d5d3;

    /* Teksti galleriassa */
    .gallery img {
        width: 80%;
        height: auto;
        /* Pitää kuvasuhteen ennallaan */
        margin: 10px;
        /* Lisää tilaa kuvien väliin */
    }
}

/* Mobiililaitteet, yksi kolumni */
@media (max-width: 768px) {
    .gallery-overview {
        grid-template-columns: 1fr;
    }
}