/* Styles für suhren.digital */

html, body {
  overflow-x: hidden;
}

/* Wichtige neue Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
[data-aos] {
  will-change: transform, opacity;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0a192f;
  color: #ffffff;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 700;
}

.section {
  padding: 4rem 2rem;
  text-align: center;
}
.content-background {
  background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)), url('img/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #0a192f;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 999;
  height: 80px;            /* feste Höhe setzen */
  overflow: hidden;       /* verhindert Ausdehnung durch große Logos */
}

.logo a {
  text-decoration: none;
  color: #ffd700;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700;
}

/* Burger-Menü */
.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #ffd700;
  margin: 5px;
  transition: all 0.3s ease;
}

.burger.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle .line2 {
  opacity: 0;
}

.burger.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  background-image: url('img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background-color: #ffd700;
  color: #0a192f;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #e6c200;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero-btn {
  display: inline-block;
  transform-origin: center center;
}


/* Leistungen */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.leistung {
  background: linear-gradient(rgba(23, 42, 69, 0.7), rgba(23, 42, 69, 0.7)), url('img/background6.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leistung:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  background-color: #1c2e50;
}

.leistungs-icon {
  width: 30px;
  margin-bottom: 1rem;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.portfolio-item {
  background: linear-gradient(rgba(23, 42, 69, 0.7), rgba(23, 42, 69, 0.7)), url('img/background6.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.portfolio-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  background-color: #1c2e50;
}

.portfolio-item,
.mehr-link {
  color: #ffd700;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.mehr-link:hover {
  color: #e6c200;
  transform: scale(1.1);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-item {
  background: linear-gradient(rgba(23, 42, 69, 0.7), rgba(23, 42, 69, 0.7)), url('img/background6.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem;
  border-radius: 10px;
}
.testimonial-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  background-color: #1c2e50;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

/* Über mich */
.ueber-mich .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.ueber-mich .foto img {
  width: 300px;
  border-radius: 15px;
  object-fit: cover;
}

.ueber-mich .text {
  max-width: 600px;
}

/* Kontaktformular */
.kontaktformular {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto 0 auto;
}

.kontaktformular input,
.kontaktformular textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.kontaktformular button {
  background-color: #ffd700;
  color: #0a192f;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.kontaktformular button:hover {
  background-color: #e6c200;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Footer */
footer {
  background-color: #0a192f;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  color: #ffd700;
  text-decoration: none;
  margin: 0 0.5rem;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-button img {
  width: 100%;
  height: auto;
}

.whatsapp-button:hover {
  animation: bounce 1s;
}

/* Scroll-to-Top Button */
.scroll-top-button {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background-color: #ffd700;
  color: #0a192f;
  padding: 0.5rem 0.8rem;
  border-radius: 50%;
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: none;
}

.scroll-top-button:hover {
  background-color: #e6c200;
  transform: scale(1.2);
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: left;
}

.content-container p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.icon {
  margin-right: 0.5rem;
}
.logo-img {
  height: 200px; /* Größe deines Logos */
  width: auto;  /* Breite proportional anpassen */
  max-height: 100%;  
  object-fit: contain;
  display: block;
}
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #ffd700;
  background: none;
  border: none;
  cursor: pointer;
}
/* Mobile Navigation standardmäßig verstecken */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px; /* gleiche Höhe wie deine Navbar */
  left: 0;
  width: 100%;
  z-index: 998; /* unter der Navbar (999) */
}



/* Responsive */
@media (max-width: 768px) {
  /* Burger-Button einblenden */
  .menu-toggle {
    display: block;
  }

  /* Desktop-Navigation verstecken */
  .nav-links {
    display: none;
  }

  /* Mobile Navigation sichtbar, wenn Klasse "show" */
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
    background-color: #0a192f;
    padding: 2rem;
    text-align: center;
    max-height: calc(100vh - 80px); /* nicht über den Bildschirm hinausragen */
    overflow-y: auto;
  }

  .mobile-nav.show {
    display: flex;
  }

  .mobile-nav a {
    color: #ffd700;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s ease;
  }

  .mobile-nav a:hover {
    color: #ffffff;
  }
}
