/* ----- GENEREL ----- */
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #eef4ff;
    color: #111827;
}

/* ----- HEADER ----- */
#header {
    background: linear-gradient(90deg, #1d4ed8, #3b82f6);
    color: white;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* ----- NAVIGATION ----- */
#nav {
    background: white;
    padding: 12px 0;
    text-align: center;
    border-bottom: 2px solid #dbeafe;
    position: sticky;
    top: 0;
    z-index: 10;
}

#nav a {
    color: #1e40af;
    text-decoration: none;
    margin: 0 25px;
    padding: 6px 10px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

#nav a:hover {
    color: #1d4ed8;
    border-bottom: 2px solid #1d4ed8;
}

/* ----- LAYOUT ----- */
#container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    padding: 30px 20px;
    gap: 30px;
}

/* ----- CONTENT (venstre kolonne) ----- */
#content {
    width: 70%;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    border-left: 6px solid #3b82f6;
}

#content h2 {
    margin-top: 0;
    color: #1e3a8a;
}

/* ----- SIDEBAR (højre kolonne) ----- */
#sidebar {
    width: 30%;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    border-top: 6px solid #1d4ed8;
    text-align: center;
}

/* BILLEDE I SIDEBAR */
#sidebar img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* Tekst i sidebar */
#sidebar h3 {
    color: #1e40af;
    font-size: 22px;
    margin-top: 0;
}

.info-line {
    margin: 8px 0;
    font-size: 16px;
}

/* ----- FOOTER ----- */
#footer {
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    background: #1d4ed8;
    color: white;
    font-weight: 500;
    box-shadow: 0 -3px 8px rgba(0,0,0,0.15);

