/* CSS Document */

/********** COLOURS **********/

:root {
    --v-nsdark: #121212;
    --v-nslight: #ffffff;
    --v-nscolor: #BAFF00;
    --v-nscolor2: #EFFFC3;
}


.bg-nsdark {
  background-color: var(--v-nsdark);
  }  
  
.bg-nscolor {
  background-color: var(--v-nscolor);
  }    
  
.bg-nscolor2 {
  background-color: var(--v-nscolor2);
  }    
  
.text-nslight {
  color: var(--v-nslight);
  } 
  
.text-nsdark {
  color: var(--v-nsdark);
  }   
  
.text-nscolor{
  color: var(--v-nscolor);
  }    
  
.text-nscolor2{
  color: var(--v-nscolor2);
  }    
  
body {
  color: var(--v-sbtadark);
  font-family: "Roboto Mono", monospace;  
}     
   
    
/**************** HEADLINES & FONTS *******************/

h1,
h2,
h3,
h4,
h5,
h6
{  
    font-family: "Barlow", sans-serif;    
    font-weight: 700;
    color: var(--v-dark);
} 

/* p */
p {
  font-family: "Roboto Mono", monospace;  
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.9;
}

@media screen and (max-width: 768px) {
  p {
    font-size: 0.8rem;
    line-height: 1.85;
  }
}

/* DISPLAY-1 STARTSEITE HEADLINE */
.display-1 {
  font-family: "Roboto Condensed", sans-serif;   
  font-size: 5.4rem;
  font-weight: 800;
  line-height: 1.0;
  /* text-transform: uppercase; */
}

@media screen and (max-width: 992px) {
  .display-1 {
    font-size: 4.8rem;
  }
}

@media screen and (max-width: 768px) {
  .display-1 {
    font-size: 3.2rem;
  }
}

/* DISPLAY-2 ABSCHNITTSHEADLINE */
.display-2 {
  font-family: "Roboto Condensed", sans-serif;  
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.2;
  /* text-transform: uppercase;  */
}

@media screen and (max-width: 992px) {
  .display-2 {
    font-size: 3.0rem;
  }
}

@media screen and (max-width: 768px) {
  .display-2 {
    font-size: 2.6rem;
  }
}

/* DISPLAY-3 Satz und kleine Headlines */
.display-3 {
  font-family: "Roboto Condensed", sans-serif;     
  font-size: 2.0rem;
  font-weight: 800;
  line-height: 1.2;
}


@media screen and (max-width: 768px) {
  .display-3 {
    font-size: 1.8rem;
  }
}

/* DISPLAY-4 ZAHLEN */
.display-4 {
  font-family: "Roboto Mono", sans-serif;  
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .display-4 {
    font-size: 2.3rem;
  }
}

/* DISPLAY-5 KLEINE WÖRTCHEN */
.display-5 {
  font-family: "Roboto Condensed", monospace;    
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.1;
}

@media screen and (max-width: 768px) {
  .display-5 {
    font-size: 0.7rem;
  }
}

/* DISPLAY-6 MENUSCHRIFT*/
.display-6 {
  font-family: "Roboto Condensed", sans-serif;      
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .display-6 {
    font-size: 1.6rem;
  }
}

/* DISPLAY-7 kleiner als p aber größer als small */
.display-7 { 
    font-weight: 400;
    font-size: 0.7rem;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .display-7 {
    font-size: 0.65rem;
  }
}

/* DISPLAY-8 RELATED LINKS */
.display-8 {
  font-family: "Roboto Condensed", sans-serif;  
  font-size: 1.0rem;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .display-8 {
    font-size: 1.0rem;
    font-weight: 600;
  }
}

/* DISPLAY-9 INTERVIEW */
.display-9 {
  font-family: "Roboto Condensed", sans-serif;  
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .display-9 {
    font-size: 0.9rem;
    font-weight: 600;
  }
}

/* DISPLAY-LOGO LOGOSCHRIFT*/
.display-logo {
  font-family: "Roboto Condensed", sans-serif;     
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .display-logo {
    font-size: 0.7rem;
  }
}

/* DISPLAY-LINK auf den Detailseiten*/
.display-link {
  font-family: "Roboto Condensed", sans-serif;      
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.1rem;  
}

.lead {
  font-family: "Roboto Mono", monospace; 
  font-size: 1.0rem;
  font-weight: 400;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .lead {
    font-size: 1.0rem;
  }
}

small,
.small {
  font-size: 0.7rem;
}


/**************** HAMBURGER MENU & OVERLAY *******************/

.menu-toggle {
  position: fixed;
  top: 1.75rem;
  right: 1.75rem;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1100;
  transition: background .2s ease, box-shadow .2s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, .2);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--v-nslight);
  outline-offset: 4px;
}

.menu-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--v-nslight);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle__bar + .menu-toggle__bar {
  margin-top: 6px;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .menu-toggle {
  background: rgba(255, 255, 255, .2);
}

body.menu-open .menu-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.menu-open .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 1000;
  padding: 3rem 1.5rem;
}

body.menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-overlay__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
}

.menu-overlay__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu-overlay__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.menu-overlay__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-overlay__link {
  font-family: "Outfit", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  transition: color .2s ease;
  line-height: 1.2;
}

.menu-overlay__link:hover,
.menu-overlay__link:focus {
  color: var(--v-nscolor);
}

@media (max-width: 992px) {
  .menu-toggle {
    top: 1rem;
    right: 1rem;
    width: 2.75rem;
    height: 2.75rem;
  }
  .menu-overlay__list {
    gap: 1rem;
  }
  .menu-overlay__link {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .menu-overlay {
    padding: 2.5rem 1rem;
  }
  .menu-overlay__link {
    font-size: 1.7rem;
  }
}

