/* great-vibes-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Great Vibes';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/great-vibes-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* quicksand-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/quicksand-v36-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* quicksand-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/quicksand-v36-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


:root {
  --dark-grey: #34333b;
  /* --light-grey: #e3e3e3; */
  --light-grey: white;
  --accent: #176973;
  --accent-light: #e3f7fa;
  --golden: goldenrod;

  --text-white: white;

  font-size: 16px;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;

  scroll-behavior: smooth;
}

h1 {
  margin: 0;
}

a {
  color: var(--accent);
  margin-bottom: .5rem;
}

/* === Login Styles === */
body {
  font-family: "Quicksand", sans-serif;
  line-height: 1.5;
  margin: 0;
  background: var(--light-grey);
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.great-vibes {
  font-family: 'Great Vibes', cursive;
}

h1.great-vibes {
  font-family: 'Great Vibes', cursive;
  font-size: 8rem;
  margin: 2rem 0;
  padding-bottom: 1rem;
  text-align: center;
  font-weight: normal;
  line-height: .8;

  border-bottom: 2px solid var(--accent);
}

h2.great-vibes {
  font-family: 'Great Vibes', cursive;
  font-size: 4rem;
  font-weight: normal;
  margin: 1rem 0;
  color: var(--accent);
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  margin-bottom: .25rem;
}

.separator {
  width: 300px;
  height: 2px; 
  background-color: var(--accent);
  margin: 2rem auto;
}

.profile-picture {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  display: block;

  flex-shrink: 0;
}

.login-main {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.login-form .great-vibes {
  font-size: 5rem;
  margin-block-end: 5rem;
}

.login-form .names {
  margin-block-start: 12rem;
}

input[type=password], button.login-button {
  padding: 1rem;
  font-size: 1rem;
  margin-top: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

input[type=password]:focus{
  outline: none;
  box-shadow: inset 0 0 3px var(--accent);
}

input[type="password"] {
  width: 12rem;
  max-width: 80%;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

button.login-button {
  background-color: var(--accent);
  color: white;
  border: none;
  cursor: pointer;
}

button.login-button:hover {
  background-color: var(--dark-grey);
}

.error-wrapper {
  color: darkred;
  margin-top: 1rem;
}

/* === Page Styles === */
/* header {
  background: var(--accent);
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
} */

nav {
  display: flex;
  gap: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background: white;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--dark-grey);
  padding: 1rem;
}

.nav-mobile a {
  color: white;
  padding: 0.5rem 0;
  text-decoration: none;
}

.nav-mobile.active {
  display: flex;
}

.line {
    width: 25%;
    height: 1px;
    background-color: var(--dark-grey);
    margin: 1rem auto;
}

/* Mobile */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .login-form .great-vibes {
    font-size: 4rem;
  }

  .profile-picture, .great-vibes {
    margin-block: 2rem;
  }

  .great-vibes {
    margin-block-start: 0rem;
  }
}

body, main {
  margin: 0;
  width: 100%;
}

.stage {
  width: 100%;
  background: var(--dark-grey);
  color: var(--text-white);
  aspect-ratio: 3 / 2;
    height: 99vh;
  
  display: grid;
  grid-template-columns: 45% 55%;

  border-bottom: 10px solid teal;
}

@media (max-width: 1600px) {
  .stage { 
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
}

@media (max-width: 1000px) {
  .great-vibes.h1 {
    font-size: 6rem;
  }
}

.stage__image {
  width: 100%;
  height: 100%;
  
  background: url("images/stage.jpg");
  
  background-position: center;
  background-size: cover;
  transition: all 2s;
}

  
.stage__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: white;
  padding: 3rem; 
  box-sizing: border-box;
  background-color: var(--dark-grey);
}

.stage__headline .subline {
  font-size: 2rem;
  font-weight: lighter;
  margin-bottom: 1rem;
}
.stage__headline .date {
  display: block;
  font-size: 1.5rem;
  background-color: var(--accent);
  padding: 5px 7px;
}

h2 {
  font-size: 3rem;
  font-weight: normal;
}

section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Content */
.content-wrapper--bg-accent {
  background-color: var(--accent-light);
}

.content {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 1rem 2rem;
  box-sizing: border-box;
}

.content.flex-col {
  display: flex;
  flex-direction: column;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1em;
}

.gallery img {
  width: 100%;
}

/* Items */

/* Info Box with Icon */
/*
 SVG from https://fontawesome.com/search
 copy svg from icon
*/
.icon-info {
  display: grid;
  gap: 1rem 2rem;

}

.icon-info--col {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  justify-items: center;
}

.icon-info--col p {
  font-size: 1.1rem;
}

.icon-info--row {
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr;
  align-items: center;
}

.icon-info--row-reverse {
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr;
  align-items: center;
}

.circle-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: var(--accent-light);
  color: var(--text-white);
  font-size: 3rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}



.circle-icon svg {
  width: 80px;
  fill: var(--accent);
}

.circle-icon--small {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--accent-light);
  color: var(--text-white);
  font-size: 3rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-icon--inverted {
  background-color: white;
}

.circle-icon--small svg {
  width: 40px;
  fill: var(--accent);
}

.icon-info p {
  margin: 0;
}


/* Section content */
.info-box {
  border: 3px solid var(--golden);
  color: var(--golden);
  padding: 1rem 1.5rem;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  background: rgb(255, 251, 248);
}


.welcome-intro {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 4rem;
  flex-direction: row;
}

.welcome-facts {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 2rem;
}


/*.map {
  width: 100%;
  height: 300px;
  margin: 1rem 0;
}*/

.link-list {
  display: flex;
  gap: 1rem;
}

.link-chip {
  list-style: none;
  background-color: var(--accent);
  padding: 10px 15px;
  border-radius: 5px;

  transition: all 1s;
}

.link-chip:hover {
  transform: scale(1.1)
}

.link-chip a {
  text-decoration: none;
  color: var(--text-white)
}

/* Kontakt */
.strong {
  font-weight: bold;
  font-size: 1.05rem;
}

#kontakt h3 {
  margin-top: 2rem;
}

/* Footer */
#footer {
  border-top: 10px solid var(--accent);
  background-color: var(--dark-grey);
  margin-top: 4rem;
  color: var(--text-white);
}

#footer h3 {
  margin: 0;
  font-size: 1.5em;
  font-weight: normal;
}

#footer .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}




@media (max-width: 820px) {
  .stage {
    grid-template-columns: 1fr;
    grid-template-rows: 100vw minmax(min-content, auto);
  }

  .stage__image {
    background-position: top center;
    height: auto;
    aspect-ratio: 1;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery img:nth-of-type(3) {
    order: 4;
  }
}

@media (max-width: 640px) {
  h1.great-vibes {
    font-size: 4.5rem;
  }

  .stage__headline {
    gap: 1rem;
  }

  .stage__headline .subline,
  .stage__headline .date {
    font-size: 1.5rem;
    margin: 0;
  }

  #footer .content {
    flex-direction: column;
  }

  .welcome-intro {
    flex-direction: column;
  }

  .welcome-facts {
    flex-direction: column;
  }

  .profile-picture {
    width: 200px;
    height: 200px;
  }
}