@import url("https://use.typekit.net/oca3kol.css");


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100vh;
  font-family: "open-sans", sans-serif;
font-weight: 400;
font-style: normal;
  color: white;
	font-size: 18px;
	width: 100vw;
}

a {
	color:inherit;
text-decoration: underline;
}

.background {
  background: url('./images/bg.jpg') no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  flex-direction: column;
	object-fit: cover;
	height: 100vh;
	width: 100vw;
}


.logo {
	width: 450px;
	padding-top: 40px;
	padding-bottom: 15px;
}
.content {
  max-width: 800px;
  width: 100%;
}

h1 {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin: 20px 0;
}

h1 span {
  font-size: 24px;
  font-weight: 300;
  display: block;
  margin-top: 5px;
}

h2 {
  font-size: 20px;
  letter-spacing: 0.15em;
  font-weight: normal;
	text-transform: uppercase !important;
}

.email-button {
  display: inline-block;
  margin: 30px 0;
  padding: 10px 30px;
  border: 1px solid white;
  text-decoration: none;
  color: white;
  border-radius: 100px;
	transition: background 0.5s;
}
.email-button:hover {
  background: #1d4a4e;
}

.contact {
  margin-top: 60px;
  line-height: 1.6;
	text-align: left;
}

.contact a {
  color: white;
  text-decoration: underline;
}

.socials {
  margin-top: 40px;
	display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.socials a {
  margin: 0 10px;
  display: inline-block;
}

.socials img {
  width: 30px;
  height: auto;
}

.footer {
	border-top:1px solid #FFF;
	display: flex;
    flex-direction: row;
    justify-content: space-between;
}

footer {
  margin-top: 50px;
  font-size: 12px;
  opacity: 0.7;
	text-align: right; 
}



.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.popup-content {
  background: #fff;
  color: #000;
  padding: 30px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #000;
  cursor: pointer;
}

footer a {
  color: white;
  text-decoration: underline;
  cursor: pointer;
}



/* Mobile Optimierung */
@media (max-width: 768px) {
  .background {
    padding: 40px 15px;
    height: auto;
    min-height: 100vh;
  }

  .logo {
    width: 80%;
    max-width: 300px;
    padding-top: 30px;
    padding-bottom: 10px;
  }

  h1 {
    font-size: 36px;
  }

  h1 span {
    font-size: 20px;
  }

  h2 {
    font-size: 16px;
  }

  .email-button {
    padding: 10px 25px;
    font-size: 16px;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .contact {
    text-align: center;
    margin-top: 40px;
  }

  .socials {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }

  footer {
    margin-top: 40px;
    text-align: center;
  }

  .popup-content {
    max-width: 90%;
    padding: 20px;
    font-size: 14px;
  }

  .close-btn {
    font-size: 24px;
    top: 5px;
    right: 10px;
  }
}
