/* GLOBALT */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f7fa;
    color: #333;
}

/* TOPBAR */
.topbar {
    width: 100%;
    background-color: #831458;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

/* Kvadratiske billeder */
.top-img-square {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    border-radius: 8px;
}

/* Logo */
.top-logo {
    height: 200px;
    flex-shrink: 0;
}

/* HEADER */
header {
    background: none;
    color: #333;
    padding: 40px 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 42px;
    color: #1e73be;
}

header p {
    margin: 10px 0 0;
    font-size: 20px;
}

/* CONTENT */
.content-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.box {
    background: white;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.box h2 {
    margin-top: 0;
    color: #1e73be;
}

/* FOOTER */
.footer-odense {
    background-color: #831458;
    color: white;
    padding: 40px 0 20px 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
}

.footer-col {
    width: 220px;
    margin-bottom: 20px;
    padding-right: 20px;
    border-right: 1px solid rgba(255,255,255,0.4);
}

.footer-col:last-child {
    border-right: none;
}

.footer-col h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    color: #ffffff;
}

.footer-col p a {
    color: #ffffff;
    text-decoration: none;
}

.footer-col p a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.footer-qr {
    position: absolute;
    right: 20px;
    bottom: 20px;
    text-align: center;
}

.footer-qr img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-odense {
    position: relative; /* gør det muligt at placere QR-koden inde i footeren */
}

