﻿/* exo-2-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 200;
  src: url('fonts/exo-2-v26-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* exo-2-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/exo-2-v26-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* exo-2-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/exo-2-v26-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* exo-2-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/exo-2-v26-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* exo-2-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/exo-2-v26-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* exo-2-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/exo-2-v26-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Smooth scroll behavior for anchor links */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Exo 2', sans-serif;
  background: #0a0a0a;
  color: #fff;
  font-weight: 400;
  padding: 0 20px 120px;
}

.page-content {
  overflow-x: clip;
}

/* Animated background */
.grid-bg,
.gradient-overlay-1,
.gradient-overlay-2,
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.grid-bg {
  background: radial-gradient(circle, rgba(28, 28, 28, 0.4) 0%, rgba(40, 40, 40, 0.4) 50%, rgba(28, 28, 28, 0.4) 100%);
  z-index: -3;
}

.gradient-overlay-1,
.gradient-overlay-2 {
  background: radial-gradient(circle at 20% 50%, rgba(46, 87, 73, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(81, 139, 140, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  z-index: -3;
  animation: gradientShift-1 25s ease-in-out infinite;
}

.gradient-overlay-2 {
  animation: gradientShift-2 25s ease-in-out infinite;
}

.gradient-overlay-2 {
  animation-direction: reverse;
}

@keyframes gradientShift-1 {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.1) rotate(180deg);
  }
}

@keyframes gradientShift-2 {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.1) rotate(-180deg);
  }
}

.scanlines {
  background: linear-gradient(transparent 50%, rgba(46, 87, 73, 0.05) 50%);
  background-size: 100% 4px;
  z-index: 2;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 10px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(46, 87, 73, 0.1);
}

nav.scrolled {
  padding: 15px 20px;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 5px 30px rgba(46, 87, 73, 0.2);
}

/* Footer (gleicher Stil wie Header, am unteren Seitenrand fixiert) */
footer.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 50px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  z-index: 999;
  border-top: 1px solid rgba(46, 87, 73, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.footer-links {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  text-decoration: none;
  color: #fff;
  opacity: 0.7;
  padding: 6px 10px;
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 15px;
}

.footer-links a:hover,
.footer-links a.active {
  opacity: 1;
  color: #67999a;
}

.nav-container { 
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.logo-svg {
  width: 50px;
  height: 50px;
  margin-bottom: 25px;
}

.logo-text,
.logo-svg {
  animation: glow 4s ease-in-out infinite;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  position: relative;
  top: 2px;
  background: linear-gradient(45deg, #67999a, #00c9a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 2s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(46, 87, 73, 0.5);
}

.logo-text span {
  font-weight: 300;
}

@keyframes glow {

  0%,
  100% {
    filter: brightness(1);
    text-shadow: 0 0 2px #518B8C;
  }

  50% {
    filter: brightness(1.5);
    text-shadow: 0 0 8px #518B8C;
  }
}

.nav-links {
  display: flex;
  gap: 15px;
  list-style: none;
  margin-top: 4px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 2px;
  opacity: 0.7;
}

.nav-links a.active {
  opacity: 1;
  color: #67999a;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #67999a, #00c9a1);
  transition: width 0.6s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Sections */

.text-wrapper h2,
.text-wrapper h3,
.text-wrapper h4,
.text-wrapper strong,
.text-wrapper p,
.text-wrapper ul {
  padding: 0 58px 0 30px;
}

.text-wrapper strong.keinabstand {
  padding-left: 0;
}

section {
  max-width: 1200px;
  margin: 100px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  background: radial-gradient(circle, rgba(10, 10, 10, 0.45), rgba(28, 28, 28, 0.5) 60%);
  border-radius: 8px;
  border: 1px solid #518B8C;
  scroll-margin-top: 120px;
}



.scroll-reveal {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}

.scroll-reveal.from-right {
  transform: translateX(80px);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-reveal.from-right,
  .scroll-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.intro { margin-top: 200px; background: none; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 0 30px; position: relative; min-height: 550px; }

.intro .text-wrapper h2 {
  
  font-size: 48px;
  color: #fff;
  background: linear-gradient(45deg, #67999a, #00c9a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  animation: glow 2s ease-in-out infinite;
  text-shadow: 0px 0px 2px #518B8C;
}

.intro .text-wrapper h3 {
  
  font-size: 30px;
  color: #fff;
  background: linear-gradient(45deg, #67999a, #00c9a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  animation: glow 2s ease-in-out infinite;
  text-shadow: 0px 0px 2px #518B8C;
}

.hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

/* Slide backgrounds (CSS slideshow) */
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 30;
  border-radius: 8px;
  will-change: transform, opacity;
  transition: opacity 1s ease;
}

/* Two slides: 12s cycle with continuous overlap crossfade */
.slide-bg.slide1 { animation: crossA 12s infinite linear; }
.slide-bg.slide2 { animation: crossB 12s infinite linear; }

@keyframes crossA {
  0%   { opacity: 1; }
  45%  { opacity: 1; }
  55%  { opacity: 0; }
  95%  { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes crossB {
  0%   { opacity: 0; }
  45%  { opacity: 0; }
  55%  { opacity: 1; }
  95%  { opacity: 1; }
  100% { opacity: 0; }
}


/* Text */
.intro .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.intro .text-wrapper {
  position: relative;
  z-index: 10;
margin: 8% 0;
}

h2 {
  font-size: 24px;
  font-weight: 600;
}

h3 {
  font-size: 18px;
  font-weight: 600;
}

p,
ul {
  font-weight: 200;
}

ul {
  list-style-position: outside;
  padding-left: 1em;
}

li {
  margin-bottom: 0.3em;
}

.text-wrapper a {
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
}

.logo-im-text-wrapper {
  position: relative;
  width: clamp(110px, 22vw, 250px);
  z-index: 5;
  margin-bottom: 20px;
  margin-left: 35px;
}

.logo-im-text {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  animation: glow 4s ease-in-out infinite;

}


/* Responsive hero for mobile */
@media (max-width: 768px) {
  .hero {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 250px;
  }
}

/* Kontaktformular */
.contact-form {
  width: 738px;
  max-width: calc(100% - 64px);
  margin: 40px 32px 80px;
  padding: 30px;
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(81, 139, 140, 0.4);
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(81, 139, 140, 0.25);
  backdrop-filter: blur(8px);
}

.form-group {
  margin-bottom: 25px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #67999a;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid rgba(81, 139, 140, 0.4);
  background: #0f0f0f;
  color: #fff;
  outline: none;
  transition: 0.25s ease;
  font-family: 'Exo 2', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00c9a1;
  box-shadow: 0 0 12px rgba(0, 201, 161, 0.4);
}

.contact-button {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(45deg, #67999a, #00c9a1);
  border: none;
  border-radius: 10px;
  letter-spacing: 1px;
  transition: 0.25s ease;
  box-shadow: 0 0 15px rgba(0, 201, 161, 0.4);
}

.contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 201, 161, 0.6);
}

.menu-btn {
  display: none;
  font-size: 32px;
  cursor: pointer;
  color: #fff;
  z-index: 1001;
}

/* Hide checkbox input */
.nav-toggle-checkbox {
  display: none;
}


/* Hide mobile-only menu items on desktop */
.nav-mobile-only {
  display: none !important;
}

/* Divider line in responsive menu */
.nav-divider {
  display: none !important;
}
.impressum {
    margin-top: 200px;
}

/* 404 Error Page */
.error-404 {
  min-height: calc(100vh - 70px - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 200px;
  margin-bottom: 80px;
}

.error-404 .text-wrapper {
  text-align: center;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  background: linear-gradient(135deg, #67999a 0%, #0e9177 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1;
}

.error-404 h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 600;
}

.error-404 p {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #67999a 0%, #0e9177 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 145, 119, 0.3);
}
/* Toggle nav menu with checkbox - only on mobile */
@media (max-width: 790px) {
  .nav-toggle-checkbox:checked ~ .nav-links {
    transform: translateX(0) !important;
  }
}

.menu-btn {
  cursor: pointer;
  font-size: 1.5rem;
  color: #fff;
  z-index: 1001;
  display: none;
  position: relative;
  top: 3px;
}

@media (max-width: 790px) {
  .menu-btn {
    display: block;
    margin-right: 10px;
  }
}

.cf-turnstile {
  margin-bottom: 20px;
  margin-left: 8px;
}

.text-wrapper ul {
  padding-left: 3em;
}

/* Responsive */

@media (max-width:1358px) {
  .nav-container {
    min-width: 0;
    gap: 10px;
  }

  .logo-link {
    min-width: 0;
    flex: 1 1 0;
  }

  .logo-text {
    font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-links {
    flex-shrink: 0;
    gap: 4px;
  }

  .nav-links a {
    padding: 8px 8px;
    font-size: 15px;
    letter-spacing: 0.5px;
  }
}

@media (max-width:1000px) {
  .nav-links a {
    padding: 8px 8px 8px 8px;
  }
}

@media (max-width:930px) {
}

@media (max-width:898px) {

  .logo-text {
    font-size: 18px;
  }
}

@media (max-width:850px) {
  .contact-form {
    width: 665px;
  }
}

@media (max-width:803px) {
  .contact-form {
    width: 600px;
  }
}

@media (max-width:800px) {
  .nav-links a {
    padding: 8px 0 8px 0;
  }

  .logo-text {
    font-size: 18px;
  }
}

@media (max-width:790px) {
  nav {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .logo-link {
    min-width: 0;
    align-items: flex-end;
  }

  .logo-text {
    font-size: 16px;
    white-space: nowrap;
  }

  .logo-svg {
    margin-bottom: 0;
  }

  .menu-btn {
    flex-shrink: 0;
  }

  .intro {
    margin-top: 90px;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10, 10, 10, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    padding-bottom: 50px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    list-style: none;
  }

  .nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 15px 0;
    font-size: 18px;
  }

  .nav-divider {
    display: list-item !important;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, #0e9177, #67999a);
    margin: 20px auto;
    border: none;
  }

  .nav-mobile-only {
    display: list-item !important;
    margin-top: 0;
  }

  .nav-links li {
    margin: 10px 0;
  }

  section {
    margin-top: 70px;
  }

  .logo-svg {
    width: 32px;
    height: 32px;
  }

  .logo-im-text-wrapper {
    width: 85px;
    margin-bottom: 0;
  }
}


@media (max-width:705px) {
  .contact-form {
    width: 560px;
  }
}



@media (max-width:675px) {
  .contact-form {
    width: 400px;
  }
}





  



@media (max-width:507px) {
  .contact-form {
    width: 380px;
  }
}

@media (max-width:460px) {
  .contact-form {
    width: 342px;
  }

  

  

  .cf-turnstile {
    margin-left: -8px;
  }
}
@media (max-width:444px) {
  .contact-form {
    width:280px;
  }
}
@media (max-width:418px) {
.footer-links {
  margin-left:-36px;
}
}
@media (max-width:380px) {
  .contact-form {
    width:230px;
  }
}
@media (max-width:355px) {
  .footer-links {
    gap:1px;
  }
}
@media (max-width:335px) {
  .contact-form {
    width:210px;
  }
}
@media (max-width:328px) {
    .footer-links {
    gap:0;
    margin-left:-42px;  
  }
}


















