/* Grundstil */
body {
    background-color: #f7f7f7;
    color: #222;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Header */
.hero {
    text-align: center;
    padding: 50px 20px;
    background: #005bbb;
    color: white;
}

.logo {
    width: auto;
    height: auto;
    margin-bottom: 20px;
}


/* Navigation */
.navbar {
    background: #003f7d;
    padding: 12px;
    text-align: center;
}

.navbar a {
    color: white;
    margin: 0 18px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

.navbar a:hover {
    text-decoration: underline;
}

/* Sektioner */
.section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.section h2 {
    color: #111;
    border-bottom: 3px solid #005bbb;
    padding-bottom: 6px;
    margin-bottom: 20px;
}

/* Galleri */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    background: white;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: #003f7d;
    color: white;
    margin-top: 40px;
}
