/* Gør layout forudsigeligt */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    margin: 0;
    width: 100%;
}

h1 {
    color: #333;
}

.topbanner1 {
    background-image: url("image/banner.jpg");
    background-size: cover;      /* gør billedet responsivt */
    background-position: center; /* centrerer billedet */
    width: 100%;
    height: 40vw;                /* responsiv højde baseret på skærmens bredde */
    max-height: 400px;           /* valgfri - forhindrer at banner bliver for højt */
    color: white;
    display: flex;
    align-items: center;         /* centrerer tekst lodret */
    justify-content: center;     /* centrerer tekst vandret */
    text-align: center;
}

/* Topmenu fast under banner */
.topmenu {
    width: 100%;
    background-color: #2c3e50;
    padding: 10px;
    display: flex;
    align-items: center;
    z-index: 999;
}

/* Fælles knapstil */
.btn {
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-right: 10px;
}

.topmenu .btn:hover {
    background-color: #1d6fa5;
}

.firmaside {
    margin-left: auto;
    background-color: #e67e22;
}

.firmaside:hover {
    background-color: #ca6d1c;
}

.btn:hover {
    background-color: #1d6fa5;
}

/* Footer */
.site-footer {
    text-align: center;
    margin-top: 40px;
    padding: 15px 0;
    background: #222;
    color: white;
    border-radius: 6px;
}
