/* Generelle stiler */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    background-color: #0d1b2a;
}

.background-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('without-buttons-02-01.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0d1b2a; /* Matcher bakgrunnsfargen */
    overflow: hidden;
}

.background-image {
    width: 100%;
    height: 100%;
        object-fit: cover;
    object-position: center;
    object-fit: scale-down;
    object-position: center;
}

.nav-buttons {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.menu-buttons {
    position: absolute;
    top: 50%;
    right: 7%;
    transform: translate(50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.get-started {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #227BBC;
    color: white;
    padding: 12px 30px;
    border-color: #227BBC;
    z-index: 10;
}

.button {
    padding: 10px 24px;
    border: 2px solid #6F94EA;
    background-color: transparent;
    color: #6F94EA;
    text-decoration: none;
    border-radius: 25px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.button:hover {
    background-color: #6F94EA;
    color: white;
}

.login {
    border-color: #DEAD54;
    color: #DEAD54;
    padding: 8px 20px;
}

.login:hover {
    background-color: #DEAD54;
    color: white;
}

.site-footer {
    text-align: center;
    padding: 20px;
    background-color: #0d1b2a;
    color: white;
}

@media (max-width: 768px) {
    .background-container {
        height: auto;
        background-image: url(without-buttons-mobil02-01.svg);
        min-height: 100vh;
        background-size: cover;
    }

    .background-image {
        object-fit: contain;
    }

    .menu-buttons {
        top: 30%;
        right: 18%;
    }

    .get-started {
        bottom: 180px;
    }

    .button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .login {
        padding: 6px 12px;
    }
}
