

/* Fonts */

.raleway-font {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


.yanone-kaffeesatz-font {
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


.oswald-font {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
 justify-items: center;
}

button{
    border-style: none;
    background: transparent;
    color: none;
    text-decoration: none;
}

a{
    border-style: none;
    background: transparent;
    color: none;
    text-decoration: none;
}

img {
    max-width:100%;
    max-height: 100%;
}
.header{
    width: 80%;
    height: auto;
    display: flex;
    flex-shrink: 1;
    justify-content: center;
    padding: 1rem;
    position: relative;
    
}

/* LOGO */

.logo-wrap{
position: relative;
    flex-shrink: 1;
    padding: 1rem;
    min-width: 90px;
    min-height: 90px;
}

.logo-mrdean{
    height: 180px;
}

/* BANNER */

.banner-main-container{
    display: flex;
    flex-direction: column;
    flex-shrink:1;
    /* justify-items: center; */
    padding: 1rem;

}

.banner-container{

    justify-content: end;
    flex-shrink: 1;
    

}

.banner-img{
    height: 180px;
    display: flex;
    flex-shrink: 1;
}

/* MAIN NAVIGATION */

.main-nav{
    display: flex;
    flex-shrink: 1;
    justify-content: space-around;
      margin-top: 1rem;
    /* background: green; */
}

.main-nav a{

}
.landingnav-container{
width: 80%;
    justify-items: center;

}


.landing-nav{
    display: flex;
gap: 3rem;
    flex-shrink: 1;
    justify-content: space-around;
      margin-top: 0.5rem;
    /* background: green; */
}



.nav-btn{
       font-family:'Oswald';
  font-weight:500;

  text-transform:uppercase;
  color:#231f20a4;
  font-size:1.5rem;
  letter-spacing:1px;
  position:relative;
  display:inline-block;


}












nav a:before{
  content:'';
  position: absolute;
  width: 100%;
  height: 3px;
  background:#600;
  top:47%;
  animation:out 0.2s cubic-bezier(1, 0, 0.58, 0.97) 1 both;
}

nav a:hover:before{
  animation:in 0.2s cubic-bezier(1, 0, 0.58, 0.97) 1 both;

}

}
@keyframes in{
  0%{
    width: 0;
    left:0;
    right:auto;
  }
  100%{
    left:0;
    right:auto;
    width: 100%;
  }
}
@keyframes out{
  0%{
    width:100%;
    left: auto;
    right: 0;
  }
  100%{
    width: 0;
    left: auto;
    right: 0;
  }
}
@keyframes show{
  0%{
    opacity:0;
    transform:translateY(-10px);
  }
  100%{
    opacity:1;
    transform:translateY(0);
  }
}

@for $i from 1 through 5 {
  nav a:nth-child(#{$i}){
    animation:show 1s #{$i*0.1+1}s ease 1 both;
  }
}

/* --- Submenu links onder logo --- */
.submenu-sidebar {
  position: absolute;
  top: 100%; 
  left: 0; /* uitgelijnd met logo */
  width: 200px;
  background: #f2ede4b4;
   border-left: 4px solid #550000;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.submenu-sidebar.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.5rem;
}

.submenu-content a {
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1ch;
  text-decoration: none;
  color: #111;
  font-size: 1rem;
  border-left: 3px solid transparent;
  border-radius: 3px;
  padding-left: 8px;
  transition: all 0.3s ease;
}

.submenu-content a:hover {
  color: #600;
  border-left: 3px solid #600;
  transform: translateX(5px);
}

/* achtergronddim */
/* body.dimmed::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(65, 3, 3, 0.103);
  z-index: 998;
  animation: fadeIn 0.3s ease forwards;
} */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* TABLETVIEW */
@media (max-width: 1024px) {
    .header{
        width:90%
    }
    .banner-main-container, .logo-wrap{
        height: 180px;
        padding: 0;
    }
    .logo-wrap{
      height: 280px;

    }
}
/* MOBILE VIEW */
@media (max-width: 746px) {
    .nav-btn{
        font-size:0.9rem;
    }
    .header{
        width:100%
    }
    .banner-container{
        height: 80px;
        justify-content: start;
    }
    .banner-main-container, .logo-wrap{
        height: 120px;
        padding: 0;
    }

    .logo-wrap{
        align-items: start;
        margin: 0;
        margin-right: 8px;
    }
    .logo-mrdean{
    height: 100px;
}

}
@media (max-width: 412px) {
    .nav-btn{
        font-size:0.8rem;
    }
    .header{
        padding-left: 8px;
        padding-right: 8px;
    }
.logo-mrdean{
    height: 80px;
}
}



