
img {
    max-width: 100%;
    height: auto;
}


/*FORSIDE */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GLOBAL TEKST OG FARVE TIL ALLE SIDER */
body {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    background-color: #FFFBEA;
    min-width: 1200px; /*  DESKTOP FIRST */
}

/* NAVBAR */
.topbar {
    display: flex;  /*FLEXBOX*/
    align-items: center; /*centrerer logo og links lodret*/
    padding: 20px 60px;
    background-color: #F2D85C; /* din gule farve */
}

.nav a:hover {
    opacity: 10;
}

.nav a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #000; /* sort tekst */
    text-transform: uppercase;
}

.logo img {
    width: 300px;
}

.nav {
    display: flex;   /*FLEXBOX*/
    gap: 32px; /*skaber ens afstand mellem links */
    margin-left: auto; /*skubber nav over i højre side*/
}



/* HERO TITLE */
.hero-title {
    background-color: #F2D85C;
    padding: 40px 0;
    text-align: center;
}



.hero-title h1 {
    font-size: 36px;
    font-weight: 700;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.3;
    margin-bottom: -60px;
}

/* HERO IMAGE */
.hero-image img {
    width: 100%;
    display: block;
    margin-top: 60px;
}

/* Et trygt sted for idéer at vokse sektion */
.feature {
    background-color: #F2D85C;
    display: flex;    /*FLEXBOX*/
    justify-content: space-between; /*skaber luft mellem ikon og teskt*/
    align-items: center; /*sørger for lodret justering*/
    padding: 80px 100px;
}

.feature-content {
    max-width: 500px;
}

.feature-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.feature-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.feature-content li {
    font-size: 16px;
    margin-bottom: 12px;
}

.feature-content li::before {
    content: "✓ ";
}

.btn {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 10px 16px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 500;
}

/* ICON */
.feature-icon img {
    width: 350px;
}



/* HVEM ER VI */
.about {
    background-color: #FFFBEA; /* samme lyse baggrund */
    padding: 100px 0;
}

.about h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
}

.about-text {
    max-width: 800px;   /* GIVER DE PÆNE LINJER */
    margin: 0 auto;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}





/* WHY CONNECTED STARTERS/ TESTEMONIAL  */

.why {
    background-color: #FFFBEA;
    padding: 120px 100px;
}

.why h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.why-quote {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 80px;
}

.why-content {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}


.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    width: 60%;
}

.why-text {
    background-color: #F2D85C;
    padding: 40px;
    font-size: 16px;
    line-height: 1.6;
    width: 50%;
}

.why-text p {
    margin-bottom: 16px;
}

.why-name {
    font-weight: 600;
    margin-top: 24px;
}

/*FÆLLESSKAB SEKTION UNDER TESTEMONIAL*/
.support {
    background-color: #FFFBEA;
    padding: 80px 20px;
    text-align: center;
}

.support-title {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.support-image {
    max-width: 700px;
    margin: 0 auto 80px;
}

.support-image img {
    width: 100%;
    height: auto;
    display: block;
}

.support-subtitle {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 32px;
}

.support-list {
    list-style: none;
    max-width: 420px;
    margin: 0 auto;
    padding: 0;
    text-align: left;
}

.support-list li {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 14px;
    padding-left: 18px;
    position: relative;
}

.support-list li::before {
    content: "·";
    position: absolute;
    left: 0;
}


/* 3 LABS*/
.labs-section {
    background-color: #FFFBEA;
    padding: 100px 20px;
    text-align: center;
    min-width: 1200px; /* vigtigt – desktop-first */
}

.labs-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 60px;
    text-align: center;
}

/* GRID MED 3 LABS FORSIDE*/
.labs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 80px;
}


/* GRID MED 3 LABS – ENS BILLEDER */
.labs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 80px;
}



.lab-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 16px 0 12px;
}

.lab-link {
    display: inline-block;
    background-color: #F2D85C;
    color: #000;
    font-size: 14px;
    padding: 8px 14px;
    text-decoration: none;
    border-radius: 4px;
}

/* TEKST UNDER LABS */
.labs-text {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.labs-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.labs-button {
    display: inline-block;
    margin-top: 20px;
    background-color: #F2D85C;
    color: #000;
    padding: 10px 18px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 90px;
}



/* IKONER*/

.offer {
    background-color: #FFFBEA;
    padding: 100px 60px;
    text-align: center;
}

.offer h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 80px;
}

/* GRID der holder ikonerne korrekt */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 40px;
    max-width: 900px;
    margin: 0 auto 80px;
}

/* HVER IKON-BOKS */
.offer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer .offer-item img {
    width: 64px !important;
    height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
    object-fit: contain;
    display: block;
    margin: 0 auto 16px;
}


/* TEKST UNDER IKON */
.offer-item p {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    color: #090202;
}

.btn{
    color: #090202;


}




/* FOOTER */

.footer {
    background-color: #F2D85C;
    padding: 80px 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-left p {
    font-size: 16px;
    margin-bottom: 12px;
}





.hero {
    position: relative;
}
.hero img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-buttons {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 24px;
}

























/* VORES LABS UNDERSIDE */



/* NYT-LAB-KØGE SEKTION  */

.news-lab {
    background-color: #F2D85C;
    padding: 80px 0;
}


.h1voreslabs {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    padding: 60px 0 40px; /* luft oppe og nede */
}




.news-image {
    width: 100%;
    display: block;

}

.news-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 80px;
    position: relative;

}

.news-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;

}

.news-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;

}

.news-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 700px;

}

.news-info ul {
    list-style: none;
    padding: 0;
    margin-top: 16px;

}

.news-info li {
    margin-bottom: 8px;
    font-size: 16px;

}

/* pære ikon */
.news-icon {
    position: absolute;
    right: 80px;
    bottom: 80px;
    width: 400px;


}


/*køge og næstved labs */

/*køge*/
.labs {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    background-color: #FFFBEA;
}

.labs h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    margin-top: 10px;
}

.labs-image {
    width: 100%;
    height: auto;


}

.labs-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom:3px;
    text-align: center;
}

.labs-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.labs-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.labs-info {
    list-style: none;
    padding: 0;
}

.labs-info li {
    font-size: 15px;
    margin-bottom: 10px;
}



/*NÆSTVED*/

.naestved {
    max-width: 900px;        /* 🔑 SAMME BREDDE SOM KØGE */
    margin: 0 auto;
    padding: 80px 20px;
    background-color: #FFFBEA;
}



.naestved .labs-content {
    margin-top: 65px;      /*  luft fra næstved til billedet */
}

/* Overskrift */
.naestved .labs-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* Brødtekst */
.naestved .labs-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Praktisk info */
.naestved .labs-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 32px 0 12px;
}

/* Liste */
.naestved .labs-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.naestved .labs-info li {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
}



/* FAQ SEKTION */
.faq-section {
    padding: 80px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;   /* centrerer alle elementer */
    text-align: center;    /* centrerer tekst */
}

/* Overskrift */
.faq-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Intro */
.intro-question {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.intro-text {
    max-width: 600px;
    margin-bottom: 40px;
}

/* FAQ titel */
.faq-section h3 {
    margin-bottom: 20px;
}

/* FAQ items */
.faq-item {
    max-width: 700px;
    margin-bottom: 20px;
}

.faq-item p {
    margin-top: 6px;
}

/* Knap */
.faq-button {
    margin-top: 40px;
    background-color: #F2D85C;
    padding: 10px 26px;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}











/*FOOTER UNDERSIDE*/
.footer-left a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.footer-right {
    max-width: 380px;
}

.footer-right p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.footer-button {
    display: inline-block;
    background-color: #fff;
    color: #000;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
}












/*OM OS UNDERSIDE*/

/* INTRO SEKTION */
.intro-section {
    width: 100%;
}

/* ØVERSTE GULE OVERSKRIFT */
.intro-title {
    background-color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

.intro-title h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* BILLEDE */
.intro-image img {
    width: 100%;
    display: block;
}

/* NEDERSTE GULE FELT */
.intro-content {
    background-color: #ffdd55;
    padding: 60px 0;
}

/* INDHOLD I MIDTEN */
.intro-inner {
    max-width: 900px;
    margin: 0 auto;

    display: flex;
    align-items: center;       /* lodret centrering */
    justify-content: center;   /* samlet i midten */
    gap: 60px;
}

/* TEKST */
.intro-text {
    max-width: 520px;
    text-align: center;
}

.intro-line {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

/* IKON */
.intro-icon img {
    width: 200px;
}


/*HVORFOR VI GØR SOM VI GØR*/

/* WHY SECTION */
.why-section {
    background-color: #FFFBEA;
    padding: 80px 20px;
    text-align: center;
}

/* OVERSKRIFTER */
.why-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.why-subtitle {
    margin-top: 80px;
}

/* TEKST */
.why-text {
    max-width: 650px;
    margin: 0 auto 50px auto;
    font-size: 16px;
    line-height: 1.6;
}

/* BILLEDE */
.why-image img {
    width: 800px;
    max-width: 100%;
    display: block;
    margin: 0 auto 80px auto;
}

/* UNDEROVERSKRIFT */
.why-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 40px 0 30px 0;
}

/* LISTE */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 500px;
    text-align: left;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 15px;
}

/* IKONER */
.benefits-list img {
    width: 20px;
    height: 20px;
}





/* STORY / HVORDAN DET HELE BEGYNDTE */
.story-section {
    background-color: #FFFBEA;
    padding: 100px 20px;
    text-align: center;
}

/* OVERSKRIFT */
.story-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* BILLEDE */
.story-image img {
    width: 600px;
    max-width: 100%;
    display: block;
    margin: 0 auto 60px auto;
}

/* TEKST */
.story-text {
    max-width: 700px;
    margin: 0 auto 50px auto;
    text-align: left;
}

.story-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* KNAP */
.story-btn {
    display: inline-block;
    background-color: #F2D85C;
    color: #000;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}






/* ================= MOBILE FIXES ================= */
@media (max-width: 768px) {

    /* FJERN DESKTOP-BLOKERINGER */
    body {
        min-width: unset;
        padding: 16px;
    }

    /* ALLE BILLEDER */
    img {
        max-width: 100%;
        height: auto;
    }

    /* FEATURE */
    .feature {
        flex-direction: column;
        padding: 60px 20px;
    }

    .feature-icon img {
        width: 200px;
    }

    /* WHY */
    .why-content {
        flex-direction: column;
    }

    .why-text {
        width: 100%;
        padding: 24px;
    }

    /* STORY */
    .story-layout {
        flex-direction: column;
    }

    .story-image img {
        width: 100%;
    }

    /* LABS GRID */
    .labs-grid {
        grid-template-columns: 1fr;
    }

    /* FOOTER */
    .footer-inner {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .footer-left,
    .footer-right {
        max-width: 100%;
    }

}
@media (max-width: 768px) {

    /* Stop desktop-first "låse" */
    body { min-width: 0; padding: 16px; }

    /* Nogle af dine sektioner har min-width:1200 i CSS */
    .labs-section { min-width: 0; }
    .news-content { padding: 24px 16px; }
    .why { padding: 60px 16px; }
    .about { padding: 60px 16px; }
    .feature { padding: 60px 16px; }
    .footer { padding: 60px 0; }

    /* Fjern max-width begrænsninger på mobil */
    .about-text,
    .labs-text,
    .story-text,
    .why-text,
    .support-image,
    .support-title,
    .news-content,
    .labs,
    .naestved {
        max-width: 100%;
        width: 100%;
    }

