/* ====================== */
/*  © Maximale.Studio     */
/* ====================== */

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* style.css */
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  /* overflow-y: hidden; */

  display: flex;
  flex-direction: column;
  min-height: 100vh;}

/* Hintergrund */




@keyframes fadeInBackground {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Navbar */

.navbar {
  height: 65px;
  min-height: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
  box-sizing: border-box;
  width: 100%;
}



.logo {
  font-size: 1.4rem;
  font-weight: 600;
  color: transparent;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
  overflow: hidden;
  display: inline-block;
}






.logo:hover {
  color: #0072ff;
}

@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

/* Startseite */
.under-construction {
  font-size: 2rem;
  font-weight: 600;
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
  opacity: 0; /* Startzustand */
  transform: translateY(20px); /* Startzustand */
  animation: fadeInSection 1s ease forwards; /* Animation drauf! */
}

.content {
  margin-top: 100px;
  text-align: center;
  opacity: 0; /* Startzustand */
  transform: translateY(20px); /* Startzustand */
  animation: fadeInSection 2s ease forwards; /* Animation drauf! */
  padding-top: 100px;
  text-align: center;
}

/* Impressum-Button */
.impressum-button, 


.impressum-button:hover, .home-button:hover {
  background-position: right center;
}

/* Impressum-Seite */

.headline-gradient {
  font-size: 2rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInText 2s ease forwards, colorChange 3s ease infinite alternate;
  animation-delay: 0.5s;
}

.impressum-container {
  padding: 120px 20px 40px 20px;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInSection 2s ease forwards;
  animation-delay: 0.5s;
}

.impressum-container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInText 2s ease forwards, colorChange 3s ease infinite alternate;
  animation-delay: 0.5s;
}

.impressum-container p, .contact-link {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  text-decoration: none;
  animation: fadeInText 2s ease forwards;
  animation-delay: 2s;
}

.impressum-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding: 120px 20px 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  animation: slideFadeIn 1s ease-out forwards;
  animation-delay: 0.5s;
}

.impressum-main, .impressum-side {
  background: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  flex: 1 1 400px;
  min-width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  color: #ccc;
  opacity: 0;
  transform: translateY(50px);
  animation: slideFadeIn 1s ease-out forwards;
}

.impressum-main {
  animation-delay: 0.8s;
}

.impressum-side {
  animation-delay: 1.0s;
}

@keyframes slideFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ãœberschrift "klein" mit Farbverlauf */
.headline-gradient-small {
  font-size: 1.5rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Links */
.impressum-main a, .impressum-side a {
  color: #00c6ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.impressum-main a:hover, .impressum-side a:hover {
  color: #0072ff;
}

@keyframes fadeInText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInSection {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes colorChange {
  0% {
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  100% {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

/* Footer */
.

/* Responsive */
@media (max-width: 480px) {
  
.navbar {
  height: 65px;
  min-height: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 10;
  box-sizing: border-box;
  width: 100%;
}

  
.logo {
  font-size: 1.4rem;
  font-weight: 600;
  color: transparent;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

  
  .impressum-container {
    padding: 100px 15px 30px 15px;
  }
  
@media (max-width: 480px) {
  .
  
  .footer-link {
    font-size: 0.9rem;
    margin-top: 10px; 
  }
} 

.footer-link {
  display: inline-block;
  margin-top: 8px; 
  font-size: 0.75rem;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #0072ff;
}

.footer-link:visited {
  color: #ccc;
}
}

/* ====================== */
/* Datenschutz Seite - Maximale.Studio */
/* ====================== */

.page-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 100px 20px 60px 20px;
  width: 100%;
  box-sizing: border-box;
}

.page-content, .datenschutz-container {
  position: relative;
}

.datenschutz-header {
  text-align: center;
  margin-bottom: 80px;
  font-size:2rem;
}

.datenschutz-body p:last-of-type {
  margin-bottom: 60px; 
}

.headline-gradient {
  font-size: 2rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: fadeInText 2s ease forwards, colorChange 3s ease infinite alternate;
  animation-delay: 0.5s;
}

.trust-message {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
}

.datenschutz-body {
  width: 100%;
  max-width: 1000px;
  padding-left: 40px;
  padding-right: 20px;
  text-align: left;

  display: flex;
  flex-direction: column;
  min-height: 100vh;}

.section-title {
  font-size: 1.8rem;
  margin-top: 60px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.datenschutz-body p,
.datenschutz-body ul,
.datenschutz-body li {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

.datenschutz-body ul {
  list-style-position: inside;
  padding-left: 0;
}

.datenschutz-body li {
  margin: 5px 0;
}


/* Responsive Anpassungen */
@media (max-width: 768px) {
  .navbar {
  height: 65px;
  min-height: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
  box-sizing: border-box;
  width: 100%;
}

  

  .logo {
    font-size: 1.2rem;
    text-align: center;
  }

  h1 {
    font-size: 1.8rem !important;
  }

  

.index-wrapper p {
  font-size: 1.2rem;
  max-width: 600px;
  color: #ccc;
  margin: 80px auto 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  animation: fadeInText 2.5s ease forwards;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: keep-all;
}



  .
}


@media (max-width: 768px) {
  .navbar {
  height: 65px;
  min-height: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
  box-sizing: border-box;
  width: 100%;
}

  .logo {
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 0;
  }

  
}

@media (max-width: 768px) {
  .impressum-main, .impressum-side {
    width: 90%;
    max-width: 600px;
    margin: 20px auto;
    padding: 10px;
    box-sizing: border-box;
  }

  .datenschutz-body {
    padding: 10px;
    width: 90%;
  
  display: flex;
  flex-direction: column;
  min-height: 100vh;}

  

.index-wrapper p {
  font-size: 1.2rem;
  max-width: 600px;
  color: #ccc;
  margin: 80px auto 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  animation: fadeInText 2.5s ease forwards;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: keep-all;
}


}


.logo::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
  transform: skewX(-20deg);
  opacity: 0;
  transition: all 1s ease;
  pointer-events: none;
}

.logo:hover::after {
  animation: shine 1.2s ease-in-out;
}

@keyframes shine {
  0% { left: -120%; opacity: 0.3; }
  50% { opacity: 1; }
  100% { left: 150%; opacity: 0; }
}



.home-button {
  padding: 4px 15px;
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  border: none;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-position 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  background-size: 200% 100%;
  background-position: left center;
  box-shadow: 0 4px 12px rgba(0, 114, 255, 0.3);
  margin-right: 10px;
}

.home-button:hover {
  background-position: right center;
  box-shadow: 0 0 16px rgba(0, 114, 255, 0.9);
}



footer {
  background-color: #1a1a1a;
  color: #999;
  padding: 20px 10px;
  text-align: center;
  font-size: 12px;
  width: 100%;
  z-index: 10;
}
footer a {
  color: #00c6ff;
  text-decoration: none;
  margin: 0 8px;
}
footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  footer a {
    display: block;
    margin: 6px 0;
  }
}



.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('img/background.jpg') no-repeat center center / cover;
  filter: blur(12px) brightness(0.6);
  z-index: -10;
  animation: fadeInBackground 2s ease-out forwards;
  transform: scale(1.02);
  will-change: transform;
}


.footer  {
  /* background-color: #1a1a1a; */
  color: #999;
  padding: 20px 10px;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  text-align: center;
  font-size: 12px;
  width: 100%;
  z-index: 10;
}

.footer a  {
  color: #00c6ff;
  text-decoration: none;
  margin: 0 8px;
}

.footer a:hover {
  text-decoration: underline;
}

footer, .footer {
  margin-top: auto;
}