@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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


/* -------Navbar/Hamburger------ */

header{
  position: sticky;
  top: 0;
  z-index: 1000;
 background-color: #262626;
}

li{
  list-style: none;
  font-family: 'Poppins', sans-serif;
}
a{
  color: white;
  text-decoration: none;
}

.navbar{
  min-height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-menu{
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.nav-branding{
  display: flex;
  vertical-align: top;
  width: 100px;
  height: 100px;
}

.nav-link {
  transition: 0.4s ease;
  position: relative;
}
.nav-link::after{
  content: '';
  height: 3px;
  width: 0%;
  background: darkcyan;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: 0.4s ease;
}

.nav-link:hover::after{
  width: 100%;
}



.hamburger{
  display: none;
  cursor: pointer;
}

.bar{
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
}

@media(max-width:950px){
  .hamburger{
    display: block;
  }
  .hamburger.active .bar:nth-child(2){
    opacity: 0;
  }


  .hamburger.active .bar:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }
.nav-menu{
  position: fixed;
  left: -100%;
  top: 70px;
  gap: 0;
  flex-direction: column;
  background-color: #262626;
  width: 100%;
  text-align: center;
  transition: 0.3s;
}

.nav-item{
  margin: 16px 0;
}

.nav-menu.active{
  left: 0;
}
}

/* ------Content INDEX------- */

#forside {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url("../img/content/forside2.jpg");
  background-size: cover;
  background-position: center;
}

.forside {
  max-width: 1440px;
  margin: auto;
  text-align: justify;
  padding: 3rem 0;
  line-height: 1.8rem;

}

.overskrift--forside{
  width: 100%;
  z-index: 2;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;

}

.overskrift--forside h1 {
  font-size: 70px;
}

.overskrift--forside p {
  margin: 20px auto;
  font-weight: 100;
  line-height: 25px;
}

.content {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
}

.content h3 {
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
  color: #262626;
  font-family: 'Poppins', sans-serif;
  margin-top: 5%;
}

.content h1 {
  display: flex;
  justify-content: center;
  font-size: 3rem;
  font-family: 'Poppins', sans-serif;
  color: #262626;
}

.content p {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
}

.content--text{
  display: flex;

}

.content--image {
  max-width: 60%;
  height: auto;
  border-radius: 20px;
  margin-right: 20px;
  margin-top: 60px;
}

.content--button {
  margin: 20px auto;
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #262626;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: 0.4s ease;
  margin-top: 40px;
}

.content2 h3 {
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
  color: #262626;
  font-family: 'Poppins', sans-serif;
  margin-top: 5%;
}

.content2 h1 {
  display: flex;
  justify-content: center;
  font-size: 3rem;
  font-family: 'Poppins', sans-serif;
  color: #262626;
}

.content--button:hover{
  background-color: darkcyan;
}

@media (max-width: 1200px) {
  .content--image {
    margin: 0 0 20px 0;
    max-width: 80%;
  }
  .content p {
    flex-direction: column;
    align-items: center;
  }
  .content--text {
    text-align: center;
  }
}




/* ------FOOTER------- */

.footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
}

.footer-nav{
  text-align: center;
}

.footer-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.footer-nav ul li {
  margin: 0 15px;
}

.footer-nav ul li a {
  transition: 0.4s ease;
  position: relative;
}

.footer-nav ul li a::after {
  content: '';
  height: 3px;
  width: 0%;
  background: darkcyan;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: 0.4s ease;
}

.footer-nav ul li a:hover::after{
  width: 100%;
}

.footer-contact button {
  background-color: darkcyan;
  color: white;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s ease;
}

.footer-contact button:hover {
  background-color: aqua;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav ul li {
    margin: 10px 0;
  }

  .footer-contact {
    margin-top: 20px;
  }
  .footer-logo,
  .footer-nav {
    margin-bottom: 20px;
  }

  .footer-copyright {
    position: static;
    text-align: center;
    margin-top: 20px;
  }
}

.footer-nav h3{
  margin: 0 0 10px 0;
  font-size: 16px;
  color: white;
  align-content: center;
  font-family: 'Poppins', sans-serif;
}

.social-media {
  margin-top: 15px;
}

.social-media a {
  color: white;
  margin: 0 10px;
  font-size: 24px;
  text-decoration: none;
}

.social-media a:hover {
  color: darkcyan;
}

.footer-copyright {
  display: flex;
  justify-content: center;
  bottom: 10px;
  left: 20px;
  font-size: 10px;
  color: #f1f1f1;
}




/* -------CONTENT TJENESTER-------- */
#tjenester-forside {
position: relative;
height: 100vh;
width: 100%;
background: url("../img/content/tjeneste1.jpg");
background-size: cover;
background-position: center;
}

.overskrift-tjenester{
  max-width: 1440px;
  margin: auto;
  text-align: justify;
  padding: 3rem 0;
  line-height: 1.8rem;
}

.overskrift-tjenester {

  width: 100%;
  z-index: 2;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;


}

.overskrift-tjenester h1 {

  font-size: 70px;
  text-shadow: #262626 10px;
}

.overskrift-tjenester h3{
  padding: 10px;
}

.service-showcase {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  max-width: 1200px;
  cursor: pointer;
}

.service-showcase:hover{
  transform: scale(1.01);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-image {
  width: 400px;
  height: auto;
  border-radius: 10px;
  margin-right: 20px;
}

.service-text {
  max-width: 50%;
  font-family: 'Poppins', sans-serif;
}

.service-text h2 {
  font-size: 2rem;
  color: #262626;
}

.service-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .service-showcase {
    flex-direction: column;
    text-align: center;
  }

  .service-image{
    width: 300px;
    height: auto;
  }

  .service-text {
    max-width: 100%;
    margin: 10px 0;
  }

  .service-image {
    margin-right: 0;
  }
}

.service-heading {
  text-align: center;
  margin: 40px 0;
}

.service-heading h2 {
  font-size: 2.5rem;
  font-family: 'Poppins', sans-serif;
  color: #262626;
  position: relative;
  display: inline-block;
}

.service-heading h2::after {
  content: '';
  display: block;
  width: 50%;
  height: 3px;
  background-color: #262626;
  margin: 10px auto 0;
}










/* -------OM OSS-------- */

#omoss-forside {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url("../img/content/omossforside.jpg");
  background-size: cover;
  background-position: center;
}

.overskrift-omoss{
  max-width: 1440px;
  margin: auto;
  text-align: justify;
  padding: 3rem 0;
  line-height: 1.8rem;
}

.overskrift-omoss {

  width: 100%;
  z-index: 2;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;


}

.overskrift-omoss h1 {

  font-size: 70px;
  text-shadow: #262626 10px;
}

.coming-soon-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.coming-soon-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coming-soon-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  font-family: 'Poppins', sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ------Kontakt oss------- */

.kontaktoss {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(#888888, #ffffff);
}

.kontakt-container{
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.kontakt-left{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.kontakt-left-overskrift h2{
  font-weight: 600;
  color: #262626;
  font-size: 40px;
  margin-bottom: 5px;
}

.kontakt-left-overskrift hr{
  border: none;
  width: 120px;
  height: 5px;
  background-color: #262626;
border-radius: 10px;
  margin-bottom: 20px;
}

.kontakt-inputs{
  width: 400px;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 25px;
  font-weight: 500;
  color: #888888;
  border-radius: 50px;
}
.kontakt-left textarea{
  height: 140px;
  padding-top: 15px;
  border-radius: 20px;
}
.kontakt-inputs:focus{
  border: 2px solid cornflowerblue;
}

.kontakt-inputs::placeholder{
  color: #888888;
}
.kontakt-left button{
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  color: #262626;
  gap: 10px;
  border: none;
  border-radius: 50px;
  background: darkcyan;
  cursor: pointer;
}
.kontakt-left button img{
  height: 15px;
}
.kontakt-right{
  display: flex;
  justify-content: start;
}
.kontakt-right-overskrift h2{
  font-weight: 600;
  color: #262626;
  font-size: 40px;
  margin-bottom: 5px;
}

.kontakt-right-overskrift hr{
  border: none;
  width: 120px;
  height: 5px;
  background-color: #262626;
  border-radius: 10px;
  margin-bottom: 20px;
}

.kontakt-right {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 20px;
}

.kontakt-right-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-item i {
  font-size: 24px;
  color: #262626;
}

.info-item span {
  font-size: 18px;
  color: #262626;
  font-weight: 500;
}

.job-search-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-top: -150px;
}

.job-search-form {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.job-search-form .kontakt-inputs {
  width: 400px;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 25px;
  font-weight: 500;
  color: #888888;
  border-radius: 50px;
}

.job-search-form textarea {
  height: 140px;
  padding-top: 15px;
  border-radius: 20px;
}

.job-search-form .kontakt-inputs:focus {
  border: 2px solid cornflowerblue;
}

.job-search-form .kontakt-inputs::placeholder {
  color: #888888;
}

.job-search-form button {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  color: #262626;
  gap: 10px;
  border: none;
  border-radius: 50px;
  background: darkcyan;
  cursor: pointer;
}

.job-search-form button img {
  height: 15px;
}

.job-search-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

.job-search-header h2 {
  font-size: 2rem;
  color: #262626;
  font-weight: 600;
}

.job-search-header hr {
  border: none;
  width: 120px;
  height: 5px;
  background-color: #262626;
  border-radius: 10px;
  margin-top: 10px;
}

.job-search-image {
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.job-search-image img {
  width: 700px;
  height: auto;
  border-radius: 20px;
}

.jobb {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(#888888, #ffffff);
}

@media (max-width: 1200px) {
  .kontakt-container {
    flex-direction: column;
    height: auto;
  }

  .kontakt-left, .kontakt-right {
    width: 500px;
    align-items: center;
  }

  .kontakt-right {
    margin-top: 40px;
  }

  .kontakt-left .kontakt-inputs {
    width: 80%;
  }

  .kontakt-left textarea {
    width: 80%;
  }
  .job-search-container{
    margin-top: -200px;
  }
  .job-search-header{
    margin-top: 80px;
  }
  .job-search-image{
    display: none;
  }
}

