/* === GLOBALT / BAGGRUND === */

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: #fff;
    height: 100vh;
    overflow: hidden;

    /* Baggrundsbilledet */
    background: url('https://lokalraadet-oest.dk/wp-content/uploads/2025/03/groen-1024x576.jpg')
                no-repeat center center / cover;
    position: relative;
}

/* Default linjeskift på sider   */
p {
    margin-bottom: 1rem;
}


/* Mørk overlay */
body::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
    z-index: 0;
}

/* Container centreret */
.wrapper{
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;   /* ✅ DETTE ER FIXET */
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.2s ease-out;
    padding: 20px;
}

/* === REUSABLE CARD DESIGN === */

.form-card {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 14px;
    padding: 35px;
    max-width: 420px;
    width: 100%;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
    text-align: center;
}

.form-card h2 {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 24px;
}

.form-card p {
    margin-bottom: 25px;
    font-weight: 300;
    font-size: 16px;
    opacity: 0.9;
}

/* === FORM INPUTS === */

input[type=email], 
input[type=text],
input[type=password],
input[type=date],
input[type=number] {
    width: 100%;
    padding: 12px 14px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 20px;
    outline: none;
}

/* === KNAP === */

button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    color: white;
    background: linear-gradient(135deg, #1e8f3b, #0b5a23);
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: linear-gradient(135deg, #27a94a, #0b5a23);
    transform: translateY(-2px);
}

/* Fade animation */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === LINK-KNAP / CALL-TO-ACTION === */

.action-btn {
    display: block;
    margin: 12px 0;
    padding: 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1e8f3b, #0b5a23);
    border: 1px solid rgba(0,0,0,0.25);
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 17px;
    transition: 0.25s ease;
}

.action-btn:hover {
    background: linear-gradient(135deg, #27a94a, #0d6c2a);
    transform: translateY(-2px);
}

/* =====================================================
   === AKTIVITETS-SIDE (NY OPSAT VERSION) ===
   ===================================================== */

.activity-wrapper {
    max-width: 800px;
    margin: 40px auto;
    font-family: Inter, sans-serif;
    position: relative;
    z-index: 2;
}

/* Ensartet hvid boks til info + formular */
.activity-box,
.activity-form-box {
    background: #ffffff;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    color: #333; /* mørk tekst */
}

/* Aktivitetstitel */
.activity-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

/* Dato */
.activity-date {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

/* Tekst */
.activity-description {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
}

/* Formular titel */
.form-title {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #222;
}

/* Formular labels */
.activity-form label {
    display: block;
    margin: 12px 0 5px;
    font-weight: 500;
    color: #333;
}

/* Formular inputs */
.activity-form input[type="text"],
.activity-form input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 5px;
    border: 1px solid #bbb;
    font-size: 16px;
    background: #fff;
    color: #333;
}

.checkbox-label {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

/* Formular-knap */
.activity-btn {
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    background: #0077cc; /* Blå knap */
    color: white;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.2s;
}

.activity-btn:hover {
    background: #005fa3;
}

ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
    list-style: disc;
}
.content-column {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.activities-list a {
    color: white;
}

.activities-list a:hover {
    color: #d5ffd5;
    text-decoration: underline;
}
