body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

header {
    background: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

header h1 {
    font-size: 24px;
    color: #0077b6;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 20px auto;
}

/* För skärmar som är bredare än 768px (typ dator) */
@media (min-width: 768px) {
    .hero-image {
        max-width: 50%; /* Bilden blir max 60% av containerbredden på dator */
    }
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background: #e3f2fd;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #0077b6;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

button {
    background: #0077b6;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #005f87;
}

/* Kontaktformulär */
form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Mobilmeny */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.logo {
    height: 50px; /* storlek på desktop */
    width: auto;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

@media (max-width: 768px) {
        .logo {
        height: 40px; /* mindre på mobil */
    }

    nav ul {
        flex-direction: column;
        display: none;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        border: 1px solid #eee;
        padding: 10px;
    }
    nav ul.show {
        display: block;
    }
    .menu-toggle {
        display: block;
    }
}