/* Grundlæggende Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f4f4f4;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #003366; /* Marineblå */
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #555;
}

/* Hero Section */
.hero {
    background-image: url('path/to/your/image.jpg'); /* Tilføj en passende baggrundsbillede */
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
    text-align: center;
    color: #ffffff;
}

/* Typografi */
h1, h2, h3 {
    font-family: 'Times New Roman', serif;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2em;
    color: #003366; /* Marineblå */
}

p {
    margin-bottom: 1em;
}

/* Sektioner */
section {
    padding: 20px;
    border-bottom: 1px solid #ccc;
}

/* Knapper og Call-to-Actions */
button, input[type="submit"] {
    background-color: #ffd700; /* Metallisk guld */
    border: none;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

button:hover, input[type="submit"]:hover {
    opacity: 0.8;
}

/* Kontaktformular */
form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

textarea {
    resize: vertical;
}

/* Responsiv Design */
@media (max-width: 768px) {
    .hero {
        padding: 20px;
    }

    nav {
        flex-direction: column;
    }
}
