* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body,
html {
	max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}



:root {
	--body: #fff;
    
    --accent: rgb(217, 109, 42);
    --accentHover: rgb(179, 88, 32);

    --accentText: #ffc19a;

    --text: #000;
    --greyText: #686868;
    --greyish: #9F9F9F;

    --border: #C1C1C1;

    --borderRadius10: 10px;
    --borderRadius16: 16px;
    --borderRadius20: 20px;
    
    --btnShadow: 3px 3px 20px var(--accent);
	--boxShadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.1);
    --boxShadow2: 0px 10px 20px hsl(0deg,0.08%,56.81%,40%);

    --widthMain: 1350px;
    --widthTwo: calc(100% - 25px);

    --transition: 500ms ease;
}

body {
	color: var(--text);
	background-color: var(--body);
    font-family: "Noto Sans", sans-serif;
    position: relative;

    background-image: url(/assets/images/vector.svg);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: auto;
}

p {
    margin-bottom: 0px;
}

:focus-visible {
    outline: inherit;
    transition: var(--transition);
}

:hover {
    transition: var(--transition);
}

:focus {
    transition: var(--transition);
}

a {
	text-decoration: inherit;
	color: var(--text);
    font-size: 17px;
    font-family: "Noto Sans", sans-serif;
    transition: var(--transition);
}

a:hover {
    text-decoration: inherit;
    color: inherit;
}

a:focus {
    text-decoration: inherit;
    color: inherit;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin: 0px;
    font-family: "Space Grotesk", sans-serif;
}

button {
    font-family: "Space Grotesk", sans-serif;
}

input {
    font-family: "Noto Sans", sans-serif;
}

textarea {
    font-family: "Noto Sans", sans-serif;
}

::placeholder {
    font-family: "Noto Sans", sans-serif;
}

.button {
    font-family: "Space Grotesk", sans-serif;
}

dl, ul, ol {
    margin: 0px;
}

/* MAIN DESIGN */

.JC-HeroContainer {
    background-image: url(/assets/images/heroBG.jpeg);
    background-position: center;
    background-size: cover;
    position: relative;
}

.JC-HeroContainer::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    background: linear-gradient(0deg, rgba(217,109,42,50%) 0%, rgba(217,109,42,50%));
}

.JC-HeroIndex {
    position: relative;
    z-index: 1;
}

.JC-navBar-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    width: var(--widthMain);
    margin: 0 auto;
    background: transparent !important; 
    border-radius: var(--borderRadius10);
}

.JC-navBar-left, .JC-navBar-right {
    width: 100%;
    max-width: 180px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.JC-Logo {
    width: 150px;
}

.JC-navBar {
    padding-top: 25px;
}

.JC-navBar-center {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 25px;
}

.JC-navLink {
    font-size: 16px;
    color: var(--greyish);
    font-weight: 400;
}

.JC-navLink:hover {
    color: var(--accentHover);
}

.JC-Active {
    font-weight: 600;
    color: var(--accent);
}

.JC-navBar-right {
    padding-right: 25px;
}

.JC-navEmer-text {
    color: var(--accentText);
    font-weight: 500;
    font-size: 16px;
}

.JC-navEmer-big {
    font-size: 18px;
    font-weight: 700;
    color: var(--body)
}

.JC-HeroContent {
    color: var(--body);
    width: var(--widthMain);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 500px;
    padding: 70px 0px 0px;
    padding-bottom: 50px;
}

.JC-HeroContent-left {
    width: 100%;
    max-width: 600px;
}

.JC-HeroImg {
    width: 450px;
}

.JC-HeroContent-left {
    flex-direction: column;
    gap: 25px;
    margin-top: -50px;
}

.JC-HeroTitle {
    font-size: 64px;
    font-weight: 600;
    line-height: 65px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.JC-HeroSlogan {
    font-size: 18px;
    opacity: 0.8;
}

.JC-Button {
    background: var(--accent);
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--borderRadius10);
    color: var(--body);
    font-weight: 500;
    width: 100%;
    font-size: 16px;
    padding: 0px 25px;
    text-align: center;
    font-weight: 600;
    border: inherit;
    transition: var(--transition);
}

.JC-Button:hover {
    transition: var(--transition);
    color: var(--body);
    background: var(--accentHover);
}

.JC-HeroBtn {
    max-width: 220px;
    margin-top: 25px;
}

.JC-FeatureContainer {
    background: var(--body);
    box-shadow: var(--boxShadow2);
    border: 1px solid var(--border);
    border-radius: var(--borderRadius16);
    padding: 50px 80px;
    width: var(--widthMain);
    margin: 0 auto;
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

.JC-FeatureGrids {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.JC-FeatureBox {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.JC-FeatureBox-circle {
    display: flex;
    height: 10px;
    width: 10px;
    border-radius: 100%;
    background: var(--accent);
}

.JC-FeatureBox-title {
    font-weight: 600;
}

.JC-FeatureBox-desc {
    color: var(--greyText);
    font-size: 16px;
}

.JC-ServicesContainer {
    padding: 100px 0px;
    width: var(--widthMain);
    margin: 0 auto;
}

.JC-ServiceBox {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
}

.JC-ServiceBox:nth-child(even) {
    padding: 50px 0px;
    margin: 50px 0px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-direction: row-reverse;
}

.JC-ServiceBox-col {
    width: 100%;
    max-width: 800px;
}

.JC-ServiceBox-title {
    font-size: 50px;
    font-weight: 800;
    color: var(--accent);
}

.JC-ServiceBox-slogan {
    font-size: 20px;
    color: var(--greyText);
}

.JC-ServiceBox-col .JC-Button {
    max-width: 220px;
    margin-top: 25px;
}

.JC-ServiceBox-image {
    width: 100%;
    max-width: 1024px; /* Maksimal bredde til containeren */
    height: auto; /* Højden tilpasses automatisk efter billedets proportioner */
    margin: 0 auto; /* Centrerer containeren */
    overflow: hidden;
    aspect-ratio: 1024 / 683; /* Fastlægger en standard forhold */
}

.JC-ServiceBox-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Dækker hele containeren uden at forvrænge billedet */
    border-radius: var(--borderRadius16); /* Beholder den eksisterende border-radius */
}



.JC-ContactForm {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 25px;
}

.JC-ContactForm-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
}

.JC-FormGroup {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.JC-Label {
    font-size: 16px;
    font-weight: 600;
}

.JC-ContactContainer {
    width: var(--widthMain);
    margin: 0 auto;
    padding: 60px 0px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

textarea {
    min-height: 150px;
    width: 100%;
    border-radius: var(--borderRadius10);
    padding: 15px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

textarea:focus {
    border: 1px solid var(--accent);
    transition: var(--transition);
}

.JC-SectionTitle {
    font-size: 38px;
    font-weight: 800;
    line-height: 45px;
    font-family: "Space Grotesk", sans-serif;
}

.JC-Input {
    height: 50px;
    width: 100%;
    border-radius: var(--borderRadius10);
    padding: 15px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.JC-Input:focus {
    border: 1px solid var(--accent);
    transition: var(--transition);
}

.JC-AccentBtn {
    max-width: 300px;
    text-transform: capitalize;
}

.JC-Footer {
    background: var(--text);
    margin-top: 100px;
    color: var(--body);
}

.JC-FooterWidth {
    padding: 100px 0px;
    width: var(--widthMain);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.JC-FooterLeft {
    width: 100%;
    max-width: 450px;
}

.JC-FooterBox {
    display: flex;
    flex-direction: column;
}

.JC-FooterBox-big {
    font-size: 24px;
    font-weight: 700;
}

.JC-FooterBox-small {
    font-size: 18px;
    color: var(--greyText);
}

.JC-FooterBox-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.JC-FooterSocial {
    font-size: 34px;
    color: var(--greyish);
    transition: var(--transition);
}

.JC-FooterRight {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 300px;
    gap: 15px;
}

.JC-FooterBox-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.JC-FooterBox-gap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.JC-FooterBox-link {
    font-size: 17px;
    color: var(--greyText);
    position: relative;
    font-weight: 500;
    transition: var(--transition);
}

.JC-FooterBox-link:hover {
    color: var(--accent);
    transition: var(--transition);
}

.JC-FooterBottom {
    width: var(--widthMain);
    margin: 0 auto;
    padding: 25px 0px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.JC-FooterBottom p {
    font-size: 16px;
    font-weight: 500;
    color: var(--greyText);
}

.JC-ContactFlex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.JC-ContactFlex-left {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.JC-ContactBox-row {
    display: flex;
    align-items: center;
    gap: 25px;
}

.JC-ContactBox-icon {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--accent);
    font-size: 24px;
    color: var(--body);
}

.JC-ContactBox-small {
    font-weight: 700;
    color: var(--greyish);
    font-size: 14px;
    text-transform: uppercase;
}

.JC-ContactBox-big {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
}

/* RESPONSIVE */

@media only screen and (max-width: 1400px) {
    :root {
        --widthMain: 90%;
    }
}

@media only screen and (max-width: 1250px) {
    .JC-FeatureGrids {
        gap: 25px;
    }

    .JC-HeroImg {
        width: 350px;
    }
}

@media only screen and (max-width: 968px) {
    .JC-FeatureGrids {
        grid-template-columns: repeat(2, 1fr);
    }

    .JC-HeroContent-left {
        max-width: 400px;
    }

    .JC-HeroTitle {
        font-size: 42px;
        line-height: 50px;
    }

    .JC-HeroSlogan {
        font-size: 16px;
    }

    .JC-HeroImg {
        width: 280px;
    }

    .JC-ContactFlex-left {
        max-width: 350px;
    }
}

@media only screen and (max-width: 850px) {
    .JC-ContactForm-grid-two {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media only screen and (max-width: 760px) {
    .JC-FeatureGrids {
        grid-template-columns: repeat(1, 1fr);
    }

    .JC-FeatureContainer {
        padding: 80px 50px;
    }

    .JC-ServiceBox-title {
        font-size: 32px;
    }

    .JC-ServiceBox-slogan {
        font-size: 18px;
        margin-top: 10px;
        font-weight: 300;
    }

    .JC-HeroContent-right {
        display: none;
    }

    .JC-HeroContent {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .JC-HeroBtn {
        margin: 25px auto;
    }

    .JC-ContactFlex {
        flex-direction: column;
        gap: 50px;
    }
    
    .JC-FooterWidth {
        gap: 25px;
    }

    .JC-FooterRight {
        grid-template-columns: repeat(1, 1fr);
        max-width: 160px;
    }
}

@media only screen and (max-width: 650px) {
    .JC-ServiceBox {
        flex-direction: column;
        gap: 50px;
    }

    .JC-ServiceBox-col {
        display: flex;
        text-align: center;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .JC-ServiceBox:nth-child(even) {
        flex-direction: column;
    }
}

@media only screen and (max-width: 600px) {
    .JC-navBar-left, .JC-navBar-right {
        max-width: 160px;
    }
}

@media only screen and (max-width: 500px) {
    .JC-HeroBtn {
        max-width: 100%;
    }

    .JC-ServiceBox-col .JC-Button {
        max-width: 100%;
    }

    .JC-AccentBtn {
        max-width: 100%;
    }

    .JC-FooterWidth {
        flex-direction: column;
        padding: 50px 0px;
    }

    .JC-FooterRight {
        max-width: 100%;
    }
}