body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #222;
}

.footer {
    background: #00404f;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}
.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-below {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 10px;
}

/* Muotoile linkit navigointipalkissa */
.nav a {
    color: white;
    text-decoration: none;
}
/* Lisää aktiivinen luokka korostaaksesi nykyisen sivun */
.nav a.active {
    border-bottom: 2px solid #66c0d0;
}


/* Mobiili */
@media (max-width: 700px) {
    .nav ul {
        display: none;
        flex-direction: column;
        background: #00404f;
        padding: 10px;
    }
.nav ul.show {
        display: flex !important;
    }
    /* Hamburger painike */
.nav-toggle {
    display: flex!important;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    /*float: right;*/
    }
}

.nav-toggle {
        display: none;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.image-grid img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}



.hallitus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.hallitus-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    padding: 20px;
    text-align: center;
}

.hallitus-card h3 {
    margin-bottom: 5px;
    color: #00404f;
}

.hallitus-card p {
    margin: 4px 0;
}

.header {
    background: #00404f;
    color: white;
    padding: 15px 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px; /* tärkeä: erottaa navin logosta */
}



.close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #444;
    transition: 0.2s;
}

.close:hover {
    color: #000;
    transform: scale(1.15);
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}


.logo {
    height: 100px;
    width: auto;
    border-radius: 6px;
}

.site-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}



.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.price-table th, .price-table td {
    padding: 10px 12px; /* yhtenäinen sisennys */
    text-align: left;
    /*border-bottom: 1px solid #ddd;*/
}

.price-table th {
    background: #00404f;
    color: white;
    /*font-weight: 600; */
}

.price-table tr:nth-child(even) {
    background: #f5f5f5;
}

.mokki-kuvat img {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 8px;
  margin: 0.5rem;
}



/* --- Animaatiot --- */

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


