@import url("variables.css");
@import url("cards.css");
@import url("product.css");
@import url("topslider.css");
@import url("grid.css");


html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    background-color: var(--blue);
    font-family: 'helvetica_neue_lt_std65Md';
    margin: 0;
    padding: 0;
}

header {
    border-bottom: 2px dotted #e2e2e2;

}

h1 {
    font-size: calc(100% + 4vw);
    color: var(--text);
    letter-spacing: -0.2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-weight: 500;
}

h2.subsection {
        font-size: calc(100% + 4vw);
    color: var(--text);
    letter-spacing: -0.2rem;
    border-bottom: 1px dotted #e2e2e2;
    margin-bottom: -40px;
    margin-top: var(--bigspacing);
}

p.body, p.body a, [data-content-element-type-alias="umbBlockGridDemoRichTextBlock"] p, [data-content-element-type-alias="umbBlockGridDemoRichTextBlock"] p a{
    font-size: 1rem;
    line-height: 100%;
    color: var(--textlight);
    transition: all  0.4s ease-in-out;
}

 p.body a:hover {
    color: var(--text);
 }

.sectionheader, p.sectionheader, p.sectionheader a, a .sectionheader {
    font-size: calc(100% + 1.4vw);
    line-height: 100%;
    color: var(--textlight);
    margin: 0;
}



.sectionheader a, a .sectionheader { 
    text-decoration: underline;
    text-decoration-color: var(--textlight);
    text-decoration-thickness: 2px;
}


.subheader, .subheader a, a .subheader {
    font-size: calc(100% + 1vw);
    line-height: 100%;
    color: var(--textlight);
    margin: 0;
}

.subheader a, a .subheader { 
    text-decoration: underline;
    text-decoration-color: var(--textlight);
    text-decoration-thickness: 2px;
}







#pagewrapper {
    width: 100%;
    padding: var(--mainspacing);
}

.breadcrumb {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 10px 0;
    width: 100%;
}

.breadcrumb li {
    list-style: none;
    font-size: 12px;
    color: #dbdad8;
    display: inline-block;
}

.breadcrumb span {
    margin: 0 10px;
}

.breadcrumb ul {
    text-transform: uppercase;
    padding: 0;
}

.breadcrumb li a {
    text-decoration: none;
    color: #dbdad8;
}


a.contentbutton {
    text-decoration: none;
    color:  var(--text);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 500;
    display: block;
    width:100%;
    border: 1px dotted  var(--text);
    padding: 5px 0 30px 10px;
    background-color: transparent;
    transition: all 0.4s ease-in-out;
}

a.contentbutton:hover { 
    background-color: var(--bggrey);
    padding-left:25px;
}

.contentarrowbutton {
    text-decoration: none;
    text-transform: uppercase;
    color:  var(--text);
    transition: all 0.4s ease-in-out;

}

.contentarrowbutton svg {
    width: 32px;
    fill: var(--text)
}

.contentarrowbutton:hover svg {
    margin-left: 25px;;
}

.bigText {
    text-transform: uppercase;
    color:var(--textbright);
    margin:0;
    line-height:0.6;
}


footer {
    display: flex;
    align-items: flex-start;
    width: 100%;

    gap: 2rem;
    flex-wrap: wrap;
    /* gør den responsiv */
    border-top: 2px dotted #e2e2e2;
    padding-top: var(--basespacing);
    margin-top: var(--basespacing);
    font-size: calc(100% + 1vw);
    color: #dbdad8;

}

footer a {
    text-decoration: none;
    color: var(--textlight);
    transition: all 0.4s ease-in-out;
}



.footer>div {
    flex: 1 1 200px;
    /* Minimum bredde, men fleksibel */
}
.some-container {
    margin-left: auto;
    font-size: 20px;
    text-align: right;
}

.some-container .icons {
    margin-bottom:10px;
}

.someicon {
    width: 40px;
    margin-left:15px;

}

.logo-container {
    margin-left: auto;
    width:auto;
}

.logo-container .logo {
    max-width: 150px;
    height: auto;
    opacity: 40%;
}



footer {
    display: flex;
    flex-direction: row; /* default on desktop */
  }
  
  footer > div {
    /* default order: natural order in HTML (0) */
  }
  
  footer .logo-container {
    order: 0; /* default position */
  }
  
  /* On mobile: change to column and re-order */
  @media (max-width: 768px) {
    footer {
      flex-direction: column; /* stack vertically */
    }
    footer .logo-container {
      order: -1; /* negative order puts it before others */
      margin-left: 0;
    }
  }

 