/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;500;700&display=swap');


/* RESET */
*{
  margin: 0;
  padding: 0;
}
*, *::after, *::before{
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}


/* General Settings */
:root {
  --darkgray: #222222;
  --darkgreen: #012c00;
  --green: #174417;
  --light-green: #62B44C;
  --pastel-green: #a3b9a4;
  --white-green: #edfceb;
  --white: #ebebeb;
  --darkred: rgb(90, 31, 51);

  

  /* Fonts */
  --serif: 'Roboto', sans-serif;
  --annie: 'Bebas Neue', sans-serif;

  /*  */
  --btn-padding: 0.4rem 1.6rem;
}

body {
  max-width: 100vw;

}

/* Headings */
h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  color: var(--white);
  letter-spacing: 0.06em;
  text-shadow: 0 0 5px #000000;
  text-align: center;
  width: 100%;
  position: relative;
  top: 120px;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.06em;
  text-shadow: 0 0 20px black;
}

h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.9rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}


/* Text */
p {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 200;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--pastel-green);
  line-height: 1.4;
}

/* Lists */
ul {
  list-style: none;
}

li {
  letter-spacing: 0.04em;
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
}

/* Links */
a {
  text-decoration: none;
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--pastel-green);
}

a:visited {
  color: var(--pastel-green);
}

a:active {
  color: var(--white-green);
}

a:hover {
  color: var(--white-green);
}

/* Buttons */
a.btn {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 0.8rem 2rem;
  line-height: 20px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.3rem;
  margin: 1rem auto;
  width: 250px;
}

a.btn.light {
  background: rgba(235, 235, 235, 0.5);
  color: var(--darkgreen);
  -webkit-transition: 0.24s;
  transition: 0.24s;
}

a.btn.light:hover {
  background: rgba(252, 252, 252, 0.8);
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  color: var(--darkgreen);
}

a.index-bandlink {
	display: inline-block;
font-size: 1.2rem;
}



/* Container */
header {
  height: 600px;
}

.header-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  padding: 2rem;
}


#header-logo {
  max-width: 180px;
  margin: 3rem;
  -webkit-filter: drop-shadow(3px 3px 2px rgb(0 0 0 / 0.8));
          filter: drop-shadow(3px 3px 2px rgb(0 0 0 / 0.8));
}

.headerimage {
  background-image: url('../images/schlarpe_darter_header_background3.png');
  background-size: cover;
  background-position: bottom center;
  height: 100%;
}

/* Polaroids */
.header-polaroids {
  position: absolute;
  right: 15%;
  top: 100px;
}

.header-p-img {
  background-color: var(--white);
  display: inline-block;
  padding-bottom: 1rem;
  position: relative;
  -webkit-box-shadow: 0 0 10px 2px black;
          box-shadow: 0 0 10px 2px black;
  -webkit-box-shadow: inset 0 0 6px rgb(134, 133, 133);
          box-shadow: inset 0 0 6px rgb(134, 133, 133);
}

.header-p-img:first-of-type {
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  top: -30px;

}

.header-p-img:nth-of-type(2) {
  -webkit-transform: rotate(27deg);
          transform: rotate(27deg);
  top: 40px;
  left: -15px;
}

.header-p-img img {
  width: 150px;
  padding: 0.5rem;
}

/*  */
.text-polaroid {
  color: var(--darkgreen);
  font-size: 1.3rem;
  padding: 0 1rem;
  font-weight: 200;
}
/*  */

/* Main Navigation */
/* Hide mobile nav */
.mobile-nav-handle, .mobile-nav-cnt {
  display: none;
}

.navigation-container {
  position: relative;
  top: 110px;
}

.main-nav {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 2fr 6fr 2fr;
  grid-template-areas: '. menu icons';
  gap: 10px;
  max-width: 1000px;
  margin: auto;
}

/* map and fb icons */
.info-icons {
  grid-area: icons;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  right: 1.5rem;
}

.info-icons a {
  font-size: 1.5rem;
  padding: 1rem;

}
.info-icons a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}


/* Glass Box */
.blurybackground {
  width: 70%;
  max-width: 1000px;
  height: 80px;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  left: 50%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5.1px);
  -webkit-backdrop-filter: blur(5.1px);
}

.main-nav > ul {
  z-index: 100;
  display: grid;
  grid-area: menu;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-nav > ul > li {
  padding: 0.2rem 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

/* Hover effect */
.main-nav > ul > li::after {
  content: ' ';
  background-color: var(--white-green);
  width: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 2px;
  position: absolute;
  top: 100%;
}

.main-nav > ul > li:hover::after {
  width: 200px;
}

.main-nav li > a {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--darkgreen);
  font-size: 1.8rem;
}

.main-nav > ul > li > a:hover {
  color: var(--white);
}

/* main nav dropdown */
.main-nav-dropdown {
  position: absolute;
  top: 100%;
  min-width: 200px;
  display: none;
  background: rgba(10, 46, 18, 0.5);
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(5.1px);
          backdrop-filter: blur(5.1px);
}

.main-nav-dropdown li {
  padding: 1rem 2rem ;
  
}

.main-nav-dropdown li:hover {
  background: rgba(10, 46, 18, 0.8);
}

.main-nav-dropdown li a {
  color: var(--white);
  font-size: 1.6rem;
  font-family: var(--serif);
  font-weight: 100;
}

/* Scroll fixed menu style */

.fixed-menu {
  position: fixed;
  top: 0;
  width: 100%;
  margin: auto;
  z-index: 1000;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  transform: translateX(-50%)
}

/* Subnavigation */
.sub-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  width: 80%;
}

.sub-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px auto auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sub-nav-list a {
  padding: 1rem;
  display: inline-block;
  color: var(--pastel-green);
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.sub-nav-list a:hover {
  color: var(--white-green);
  -webkit-transition: 4ms;
  transition: 4ms;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.sub-nav-list span {
  color: var(--pastel-green);
}


/* FOOTER */
.footer-cnt {
  background-image: url('../images/numberplates-bg.png');
  background-size: cover;
  background-position: top;
  min-height: 300px;
  display: grid;
  grid-template-rows: repeat(3, auto);    
  grid-template-columns: 100%;
  grid-template-areas: 'adress' 'center' 'icons';
  padding: 5rem 0 1rem 0;
  text-align: center;
}

.footer-cnt i {
  font-size: 2rem;
  color: var(--white-green);
}

.footer-cnt i:hover {
  color: var(--pastel-green);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#footer-adress {
  grid-area: adress;
}

#footer-adress p, a {
  font-size: 1.2rem;
  padding: 0.4rem 0;
  display: block;
}

#footer-adress p:first-of-type {
  font-size: 1.6rem;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-style: normal;
}

#dart-icon-footer {
  width: 2rem;
}

#dart-icon-footer:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/* right */
#social-icons-box {
  grid-area: icons;
}

.mail-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 1rem;
  padding-top: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}


/* Mobile Device */
@media screen and (max-width: 760px) {

  h1 {
    font-size: 1.8rem;
  }
  
  #header-logo {
    max-width: 140px;
    margin: 1rem 0 2.5rem 0;
  
  }

  /* Polaroids */
  .header-polaroids {
    right: 5%;
    top: 100px;
  }

  /* Main Navigation */
  .main-nav {
    grid-template-columns: 1fr 8fr 1fr;
  }
  .info-icons {
    top: 100px;
    width: 100%;

  }

  /* Glass Box */
  .blurybackground {
    width: 90%;
  }

  /* FOOTER */
  .footer-cnt {
    background-image: url('../images/numberplates-bg-mobile.png');
  }
}

/* Mobile Devices small  */
@media screen and (max-width: 600px) {

  /* Header */
	h1  {
		font-size: 1.8rem;
		
	} 
  .header-text {
    padding: 0;
  }
  /* HIDE  BIG MAIN NAV */
  /* Glass Box */
  .blurybackground, .main-nav-dropdown, .main-nav ul {
    display: none;
  }
 
  /* Mobile Nav */
  .mobile-nav-handle {
    display: inline-block;
    position: absolute;
    top: 1rem;
    right: 3rem;
  }

  .mobile-nav-handle i {
    color: var(--white-green);
    position: fixed;
    font-size: 2.2rem;
    right: 1rem;
    text-align: center;
    z-index: 1000;
    padding: 0.5rem;
    margin: 0.5rem;
    border-radius: 2px;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .fa-xmark {
    display: none;
  }


  .mobile-nav-cnt {
    display: none;
    width: 80%;
    position: fixed;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 100px;
    left: 50%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5.1px);
    -webkit-backdrop-filter: blur(5.1px);
    padding: 3rem 2rem;
    z-index: 900;
  }

  a.mobile-nav-link {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--darkgreen);
    font-size: 2rem;
    text-align: center;
    margin: 10px 0;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  /* Logo */
  .top-bar a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  #header-logo {
    max-width: 230px;
  }

  /* Polaroids */
  .header-polaroids {
    display: none;
  }

  /* map and facebook icons */
  .info-icons {
    position: static;
    grid-area: menu;
  
  }
}

