/* ======================================================
   GLOBALT
   ====================================================== */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    background-color: #ffffff;
    color: #0f1f33;
}

/* ======================================================
   BANNER
   ====================================================== */
.construction-banner {
    background-color: #2a3d59;
    color: #ffffff;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 600;
}

/* ======================================================
   HEADER (STICKY)
   ====================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;    
    position: relative;   /* ✅ VIKTIG RAD */

}

.logo img {
    max-height: 56px;
    display: block;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.main-nav a {
    text-decoration: none;
    color: #0f1f33;
    font-weight: 600;
}

.main-nav a:hover {
    text-decoration: underline;
}

/* ======================================================
   CONTAINER
   ====================================================== */
.container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

/* ======================================================
   BILD / TEXT (55 / 45)
   ====================================================== */
.content-row {
    display: flex;
    gap: 48px;
    align-items: center;
}

.content-image {
    flex: 0 0 55%;
}

.content-image img {
    width: 100%;
    border-radius: 8px;
}

.content-text {
    flex: 0 0 45%;
    min-width: 0;
    overflow-wrap: break-word;
}

.content-text h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.content-text h2 {
    font-size: 1.8rem;
    margin-top: 48px;
}

.content-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ======================================================
   BILDGRID (före / efter)
   ====================================================== */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.image-grid img {
    width: 100%;
    border-radius: 6px;
}

/* ======================================================
   FORMULÄR (ENKEL, TYDLIG, BRED)
   ====================================================== */
.form-group {
    margin-bottom: 28px; /* RADMELLANRUM */
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 50%;                 /* HALV BREDD på desktop */
    min-width: 320px;           /* så de inte blir för smala */
    padding: 12px 14px;
    font-family: inherit;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* ======================================================
   CTA-KNAPP
   ====================================================== */
.cta-button {
    display: inline-block;
    width: auto;
    padding: 14px 28px;
    background-color: #2a3d59;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #1f2f45;
}

/* ======================================================
   FOOTER (4 KOLUMNER)
   ====================================================== */
.site-footer {
    background-color: #0f1f33;
    color: #ffffff;
    margin-top: 100px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-inner strong {
    display: block;
    margin-bottom: 6px;
}

.footer-inner a {
    color: #ffffff;
    text-decoration: none;
}

/* ======================================================
   MOBIL
   ====================================================== */
@media (max-width: 768px) {

    .header-inner {
        flex-direction: column;
        align-items: center;
    }

    .main-nav {
        justify-content: center;
    }

    .content-row {
        flex-direction: column;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
    }
}
/* ======================================================
MOBILMENY – HAMBURGARE (ENDAST MOBIL)
====================================================== */

/* Dölj hamburgaren på desktop */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobilmeny – dold som standard */
.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;

    position: absolute;   /* NY */
    top: 100%;            /* NY */
    left: 0;              /* NY */
    width: 100%;          /* NY */
}

.mobile-nav a {
    padding: 14px 24px;
    text-decoration: none;
    color: #0f1f33;
    font-weight: 600;
    border-top: 1px solid #e5e7eb;
}

/* Endast mobil */
@media (max-width: 900px) {

    /* Dölj desktopmenyn */
    .main-nav {
        display: none;
    }

    /* Visa hamburgaren */
    .menu-toggle {
        display: block;
    }

    /* Visa mobilmeny när aktiv */
    .mobile-nav.active {
        display: flex;
    }
}
/* ======================================================
   MOBIL – FIXED HEADER (stabil hamburgermeny)
   ====================================================== */

@media (max-width: 900px) {

    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }

    /* Skapa plats för fast header så innehåll inte hamnar under */
    body {
        padding-top: 72px;
    }
}
@media (max-width: 900px) {

    /* Header: logga vänster, hamburgare höger */
    .header-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    /* Gör loggan lite mindre på mobil */
    .logo img {
        max-height: 44px;
    }

    /* Placera hamburgaren snyggt */
    .menu-toggle {
        font-size: 1.8rem;
        margin-left: auto;
    }
}