/* u3a_styles.css – RYDDIG OG KORREKT VERSJON */

/* =============================== */
/* Generelle stiler */
/* =============================== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* =============================== */
/* Header og logo */
/* =============================== */
.header-container {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

.u3a-logo {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    border-radius: 5px;
}

.main-heading {
    margin: 0;
    font-size: 2em;
}

/* =============================== */
/* RESPONSIVT DESIGN – kun header */
/* =============================== */
@media (max-width: 600px) {

    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .u3a-logo {
        width: 70px;
        height: 70px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .main-heading {
        font-size: 1.5em;
    }
}

/* =============================== */
/* FORSIDE – bilde til høyre for tekst */
/* =============================== */
.u3a-hero-img-wrap {
    height: 220px;          /* Juster: 200–240 etter smak */
    overflow: hidden;
    border-radius: 12px;
}

.u3a-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Naturlig utsnitt */
    display: block;
}
