/* GLOBALT */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #000;
}

/* HEADER */
header {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    padding: 20px 40px; /* mer luft */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 70px; /* litt større logo */
    width: auto;
    display: block;
}

/* NAVIGASJON */
nav {
    display: flex;
    gap: 28px;
}

nav a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 1rem;
}

nav a:hover {
    text-decoration: underline;
}

/* MOBIL */
@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        gap: 12px;
    }

    .logo {
        height: 60px;
    }

    nav {
        gap: 18px;
    }
}


/* NAVIGASJON */
nav {
    display: flex;
    gap: 24px;
}

nav a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 0.95rem;
}

nav a:hover {
    text-decoration: underline;
}

/* PRODUKTER */
.products {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    flex-wrap: wrap;
}

.products h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.product {
    background: white;
    padding: 20px;
    width: 280px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.product img {
    width: 100%;
    border-radius: 10px;
}

.price {
    font-weight: bold;
    margin-top: 10px;
}

/* BOOKING */
.booking {
    background: white;
    padding: 40px;
    margin: 40px;
    border-radius: 10px;
    text-align: center;
}

.form-container {
    margin-top: 20px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
    margin-top: 40px;
}

/* MOBIL */
@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        gap: 10px;
    }

    .logo {
        height: 42px !important;
    }

    nav {
        gap: 16px;
    }
}
/* HEADER – forbedret høyde og balanse */
header {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    padding: 30px 60px; /* mer luft over og under */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 90px; /* større og tydeligere logo */
    width: auto;
    display: block;
}

/* NAVIGASJON */
nav {
    display: flex;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 1.05rem;
}

nav a:hover {
    text-decoration: underline;
}

/* MOBIL */
@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        gap: 14px;
    }

    .logo {
        height: 70px;
    }

    nav {
        gap: 20px;
    }
}
