
/* Navigation Menu og Logo */

.header-main {

    width:100%; 
    height:70px; 
    padding: 0 10px; 
    background-color: #F3D8C7; 
    display:flex; 
    justify-content: space-between;
    position:fixed; 
    top:0; 
    z-index: 9999;
}

.logo {
font-family: "Baloo Chettan 2", sans-serif;
font-optical-sizing: auto;
font-weight: 800;
font-size: 25px;
padding:5px;
margin-top:10px;
font-style: normal;
text-decoration: none;
color:#B8A05A; 
cursor: pointer;

}


.logo a {

    text-decoration: none;
    color:#B8A05A; 
}

nav {
    display: flex;
}

.header-main ul {
    display: flex;
    height:100%; 
    list-style: none;
    align-self: center;
   
}

.header-main a {
    padding-left: 30px; /* logo rykkes */
}

.header-main li { 
    margin-right: 20px;
}

.header-main ul li {
    position: relative;
    align-self: center; 
}


.header-main ul li a{
    display: block;
    padding: 0 20px; 
    padding-bottom: 5px;
    padding-top:5px; 
    height:100%; 
    line-height: 100%;
    font-family: "Poppins", sans-serif;
    font-weight: 200; 
    font-style: normal;
    font-size:16px;
    color:#B8A05A; 
    transition: all ease-in-out 200ms;
    align-self: right; 
    float: center;
    

}


.header-main ul li a:hover {
    background-color: #B8A05A;
    color: #fff;
    border-radius: 5px;
}

/* Dropdown css */

.header-main .dropdown {
    visibility: hidden;
    background-color: #F3D8C7;
    height:fit-content;  
    width:fit-content; 
    opacity: 0;
    display: none;
    position: absolute;
    left: -20px;
    transition:all ease-in-out 200ms; 
    box-shadow: 4px 4px 8px rgba(100, 83, 44, 0.3);
    

}

.header-main ul li ul ul {
    visibility: hidden;
    background-color: #F3D8C7;
    height:fit-content;  
    width:fit-content; 
    opacity: 0;
    display: none;
    position: absolute;
    left: 0px;
    top:100%;
    transition:all ease-in-out 100ms; 

}

.header-main ul li ul li a {
    white-space: nowrap; 
    height:20px; 
    width:fit-content;

} 

ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    display: block;
}

ul li ul:hover>ul {
    visibility: visible;
    opacity: 1;
    display: block;
}

.header-main ul li ul li {
    position: relative; 
}

/* Subdropdown css */

.header-main ul li ul .subdropdown {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 100%; 
    top: 0;
    background-color: #F3D8C7;
    width:fit-content;
    padding: 5px 0;
    transition:all ease-in-out 100ms; 
    box-shadow: 4px 4px 8px rgba(100, 83, 44, 0.3);
    
  
}


.header-main ul li:hover > ul,
.header-main ul li ul li:hover > .subdropdown {
    visibility: visible;
    opacity: 1;
    display: block;
}


.header-main ul li ul li a {
    display: block;
    padding: 10px;
    color: #B8A05A;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    transition: all ease-in-out 100ms; 
    
}

.header-main ul li ul li a:hover {
    background-color: #B8A05A;
    color: #fff;
}

/* Arrow CSS */

.arrow {
    border: solid rgba(100, 83, 44, 0.3);
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
  }
  
  .right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);

  }

  
.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }

/* FOOTER */


footer {
    background-color: #B8A05A;
    width:100%; 
    height:100px;
    display: grid;
    grid-template-columns: repeat(3, 30%);
    justify-content: space-around;
    gap:20px;
    margin:0; 
 
 }
 
 #kontakt-footer {
    
    width:auto; 
    height:80px;
    text-align: center; 
 }
 
 #kontakt  {
     font-family: "Poppins", sans-serif;
     font-weight: 300;
     font-style: normal;
     font-size:14px;
     color:#fff 
     
 }
 
 
 .footer-logo-container {
     
     width:auto; 
     height:70px; 
     margin-left:20px;
     align-items: center;
     margin-top: 10px;
 }
 
 #footer-logo {
     color:white; 
     
 }
 #find-os-på {
     color:white; 
 }
 
 #socials {
     display: flex;
     flex-direction: row;
     justify-content: center;
     gap:20px;
     width:auto; 
     height:80px;
     margin-top: 20px;
 
 }
 
 .socialmediaicons {
     width:25px; 
     height:40px;
     margin-top: 5px; 
 
 }