/* RESET */
body {
    margin: 0;
}

/* =========================
   NAVBAR (TRANSPARENT OVERLAY)
========================= */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* SCROLLED STATE */
.site-header.scrolled {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* LOGO */
.site-logo {
    height: 60px;
    width: auto;
}

.site-header .navbar-nav .nav-link {
    color: #0e5592 !important;
font-size: 18px;
}

.site-header .navbar-nav {
    gap: 20px;
}


/* NAV HOVER (ALLA LÄGEN) */
.site-header .nav-link:hover,
.site-header.scrolled .nav-link:hover {
    color: #000 !important;
    text-decoration: none !important;
}

/* BRAND (LOGGA TEXT OM DU ANVÄNDER DET) */
.site-header .navbar-brand {
    color: #000;
}

.site-header.scrolled .navbar-brand {
    color: #000 !important;
}

/* =========================
   HEADINGS
========================= */
h2 {
    margin-bottom: 24px;
}

/* =========================
   LINKS (CONTENT / INNEHÅLL)
========================= */

/* vanliga länkar */
a {
    color: #0f65af;
    text-decoration: none;
}

/* underline endast i content vid hover */
a:hover {
    text-decoration: underline;
}

/* =========================
   HERO
========================= */
.hero {
    height: 590px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-align: center;
}

/* =========================
   CONTENT
========================= */
.content {
    padding: 80px 0;
}

.form-block {
    padding: 20px;
    padding-bottom: 0px;
    border: 1px solid #ccc;
    background: #fafafa;
}

/* =========================
   TOGGLER (MOBILE)
========================= */
.navbar-toggler {
    border: none;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background: #505254;
    color: #fff;
    padding: 50px 0;
    margin-top: 60px;
}