/* Globalt */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    padding-top: 100px; /* Ger utrymme för sidhuvudet */
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #273369;
    width: 50px;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #29336a;
}

/* Rubrik */
.textbox-bild-rubrik {
    margin-top: 0;
    padding-top: 25px;
    text-align: center;
    color: #273269;
    font-size: 23px;
    font-weight: 400;
}

/* Meny stil */
.service-menu {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.service-menu li {
    display: inline;
}

.service-menu a {
    text-decoration: none;
    color: #29336a;
    font-size: 16px;
    padding: 10px 15px;
    border: 1px solid #29336a;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.service-menu a:hover {
    background-color: #29336a;
    color: white;
}

/* Sektioner */
.section {
    margin: 40px 0;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section h3 {
    color: #273269;
    font-size: 20px;
    margin-bottom: 15px;
}

.section p {
    font-size: 15px;
    color: #565353;
    margin: 0;
}

/* Knappstil */
.site-btn {
    display: inline-block;
    background-color: #29336a !important;
    color: #fff !important;
    padding: 10px 20px;
    margin-top: 15px;
    font-size: 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-btn:hover {
    background-color: #1f285c !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Bildinställningar */
.img-zoom {
    height: 40vh;
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
}

.img-zoom-wrapper {
    padding: 10px;
    text-align: center;
}

/* Smooth scrolling och hänsyn till sidhuvudet */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Tar hänsyn till höjden på sidhuvudet */
}

/* Responsivitet för mobil */
@media (max-width: 767px) {
    .service-menu {
        flex-direction: column;
        align-items: center;
    }

    .service-menu a {
        margin-bottom: 10px;
    }

    #toTop {
        margin-bottom: 80px;
    }

    .navbar-toggle {
        background-color: #273369 !important;
    }

    .navbar-toggle .icon-bar {
        background-color: #e9e9e9 !important;
    }
}

/* Responsivitet för större skärmar */
@media (min-width: 768px) {
    .img-zoom {
        height: 40vh;
        width: 100%;
        object-fit: cover;
        object-position: top;
    }
}