body {
  background-color: #0F0F10;
  color: #F5F5F5;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  margin: 0;

}


.hero-title {
  text-align: center;
}


* {
  box-sizing: border-box;
}

h1 {
  font-size: 32px;
}

strong {
	font-weight:400;
}

@media (max-width: 600px) {
  h1 {
    font-size: 22px;
  }
}

#flexbox{
	display: flex;
  justify-content: center;
  align-items: center;
}

#container{
	width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0px;
}


#topmenu a {
    text-decoration: none;      /* fjerner understregning */
    color: inherit;             /* arver tekstfarve */
    margin-left: 20px;          /* afstand mellem links */
    font-weight: 400;
}


#topmenu a:hover {
    opacity: 0.6;
}


#topmenu{
	display: flex;
	align-items: center;        /* vertikal centrering */
	width:100%;
	
justify-content: space-between;
    padding: 0 20px;            /* lidt luft i siderne */

/* float: left;*/
}


#topmenu img {
    margin-right: auto;
}


#top_pic{
	width: 100%;
  background-image: url("/gfx/top.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 250px;
  /*padding: 40px 20px;*/

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

}

#head_tekst{
	width:100%;
/* float: left;*/
}

#cases{
/*	width:100%;*/
	display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* vigtig til mobil */
  padding: 20px 0;
/* float: left;*/
}

#kontakt{
	width:100%;
/* float: left;*/
}

#logo{
	width:100%;
/* float: left;*/
}

#slogan{
	width:100%;
/* float: left;*/
}


#footer{
	width:100%;
/* float: left;*/
}

#logo_img {
  max-width: 100%;
  height: auto;
  opacity: 0.5;
}

.knap{
	
  width: 280px;
  background-color: #18181B;
  border-radius: 12px;
  padding: 20px;

  display: flex;
  flex-direction: column;
  /*justify-content: center;*/   /* 🔥 centrerer lodret */
  align-items: center;       /* centrerer vandret */

  text-align: center;
  font-size: 18px;

  min-height: 180px; /* vigtig for ens højde */

  transition: all 0.2s ease;
  cursor: pointer;

  border: 1px solid #27272A;
}

@media (max-width: 600px) {
  .knap {
    width: 100%;
  }
}

input, textarea {
  width: 100%;
  max-width: 700px;
  padding: 10px;
  margin-bottom: 10px;
  background: #18181B;
  border: 1px solid #27272A;
  color: #F5F5F5;
  border-radius: 6px;
}

button {
  background: #3B82F6;
  border: none;
  padding: 10px 20px;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.knap img {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* HOVER (det der gør det lækkert) */
.knap:hover {
  transform: translateY(-5px);
  border-color: #3B82F6;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.section-title-flex {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 20px;
  width: 100%; /* vigtigt i flex container */

  color: #F5F5F5;
  font-size: 28px;
  margin: 0px 0;
    padding: 10px;
	  border: 0px;
/* float: left;*/

}

.section-title-flex span {
  white-space: nowrap;
}

.section-title-flex::before{
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, #3B82F6);
  }
.section-title-flex::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(to left, transparent, #3B82F6);
}

.sec{
  background-color: #13151E ;
  /*background-color: #FF0000 ;*/
  border: 0px;
  padding: 10px;
  text-align: center;
}

.altsec{
	background-color: #18181B;
  /*background-color: #00FF00 ;*/
  padding: 10px;
  border: 0px;


}