* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    color: #333;
    background: #f9f7f2;
    line-height: 1.7;
}

header {
    background: #2e6b3a;
    color: white;
    padding: 1.5rem 0;
    border-bottom: 4px solid #1a4524;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    font-size: 2.5rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: normal;
    letter-spacing: 0.5px;
}

.logo p {
    font-size: 0.85rem;
    opacity: 0.85;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: background 0.2s;
}

nav a:hover,
nav a.active {
    background: rgba(255, 255, 255, 0.2);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

main {
    padding: 2.5rem 0;
}

.hero-img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.section-img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin: 1rem 0 1.5rem;
}

h2 {
    color: #2e6b3a;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #d4e8d9;
    padding-bottom: 0.5rem;
}

h3 {
    color: #3a7d48;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
}

p {
    margin-bottom: 1rem;
}

.highlight-box {
    background: #fff;
    border: 2px solid #2e6b3a;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.highlight-box h3 {
    color: #c0392b;
    margin-top: 0;
    font-size: 1.3rem;
}

.event-details {
    background: #fff8e1;
    border-left: 4px solid #f0a500;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

ul, ol {
    margin: 0.5rem 0 1rem 1.5rem;
}

li {
    margin-bottom: 0.3rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
}

th {
    background: #2e6b3a;
    color: white;
    padding: 0.7rem 1rem;
    text-align: left;
}

td {
    padding: 0.6rem 1rem;
    border-bottom: 1px solid #e0e0e0;
}

tr:nth-child(even) {
    background: #f5f5f5;
}

.bestyrelse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.bestyrelse-kort {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
}

.bestyrelse-kort .initialer {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #2e6b3a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.bestyrelse-kort h3 {
    margin: 0 0 0.3rem;
}

.bestyrelse-kort .titel {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.galleri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.galleri-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.galleri-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.galleri-item .placeholder {
    height: 220px;
    background: #d4e8d9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.galleri-item p {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    margin: 0;
}

.kontakt-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.kontakt-boks {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.kontakt-boks h3 {
    margin-top: 0;
}

footer {
    background: #2e6b3a;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
    font-size: 0.9rem;
}

footer a {
    color: #a8d5b5;
}

@media (max-width: 700px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        justify-content: center;
    }

    .bestyrelse-grid,
    .galleri-grid,
    .kontakt-info {
        grid-template-columns: 1fr;
    }
}
