/* Fælles indstillinger for hele siden */
body {
    margin: 0;
    padding: 20px;
    font-family: sans-serif;
    color:white; 
    transition: padding-top 0.3s; 
}

        body { margin:0; font-family:sans-serif; color:white; transition: padding-top 0.3s; }
/* Beholderen der centrerer alt (Flexbox) */
.video-sektion {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Sørger for at tekst og video står under hinanden */
    min-height: 400px;
}

/* Selve videoens størrelse og form */
.video-boks {
    width: 90%;          /* God til mobil */
    max-width: 600px;    /* Max bredde på computer */
}

video {
    width: 100%;
    height: auto;
    border-radius: 8px;  /* Valgfrit: giver bløde hjørner */
    display: block;
}
 /* ===== HEADER ===== */
        .header { 
            position:fixed; top:0; left:0; width:100%; 
            background: rgba(0, 0, 0, 0.85); 
            backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
            display:flex; align-items:center; 
            padding:10px 20px; z-index:1000; 
            box-sizing: border-box;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            flex-wrap: wrap; /* Gør at menuen kan gå over 2 linjer */
        }

        .logo img { height:55px; width:auto; display:block; margin-right: 20px; }

        /* ===== NAVIGATIONS KNAPPER (Top & Tilbage) ===== */
        .nav-controls {
            position: fixed;
            top: 85px; /* Lige under standard header højde */
            left: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 999;
        }

        .nav-btn {
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            color: white;
            border: 1px solid rgba(255,255,255,0.3);
            padding: 10px 15px;
            cursor: pointer;
            text-decoration: none;
            border-radius: 4px;
            font-size: 18px;
            text-align: center;
        }
        .nav-btn:hover { background: rgba(255,255,255,0.2); }

        /* ===== MENU PC ===== */
        .menu { display:flex; flex-wrap: wrap; gap:5px; align-items: center; flex-grow: 1; }
        .menu a { 
            color:white; text-decoration:none; padding:10px 15px; 
            white-space:nowrap; border-radius:4px;
        }
        .menu a:hover { background-color: rgba(255,255,255,0.1); }
        .active { font-weight:bold; background: rgba(255,255,255,0.15); }

        /* ===== BURGER & MOBIL ===== */
        .burger { display: none; cursor: pointer; flex-direction: column; gap: 5px; margin-left: auto; padding: 10px; }
        .burger span { width: 25px; height: 3px; background: white; border-radius: 2px; }

        @media (max-width: 768px) {
            .burger { display: flex; }
            .menu {
                display: none; width: 100%; order: 3;
                background: rgba(0, 0, 0, 0.95); 
                flex-direction: column; padding: 10px 0;
            }
            .menu.open { display: flex; }
            .menu a { width: 100%; padding: 15px 25px; border-bottom: 1px solid rgba(255,255,255,0.1); }
            
            /* Flyt kontrol-knapper op i headeren på mobil */
            .nav-controls { 
                position: static; flex-direction: row; 
                margin-left: auto; margin-right: 10px; gap: 5px; 
            }
            .nav-btn { padding: 5px 10px; font-size: 16px; }
        }

        /* ===== INDHOLD ===== */
        .main { padding: 30px; margin-top: 20px; }
        .content-box { 
            padding: 30px; background-color: rgba(0,0,0,0.5); 
            border-radius: 10px; max-width: 900px; margin: 0 auto;
            line-height: 1.6;
        }
