/* === Reset und Grundlayout === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: url('background.jpg');
  background-repeat: repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #d38e27;
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* === Navigation === */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(17, 17, 17, 0.95);
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid #c28f2c;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #C28F2C;
  text-decoration: none;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-menu li a {
  color: #C28F2C;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #FFF;
}

/* === Sektionen === */
.section-hero,
.section-about,
.section-services,
.section-contact {
  padding: 100px 1rem 60px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* === Hero Section === */
.section-hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 1rem 60px;
}

.section-hero img {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
  border: 2px solid #d38e27;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(211, 142, 39, 0.3);
}

.hero-content {
  max-width: 700px;
}

.hero-title {
  font-size: 3rem;
  letter-spacing: 3px;
  color: #d6a94f;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
  animation: goldGlow 3s infinite alternate;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.hero-tagline {
  margin-top: 1rem;
  font-size: 1.1rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* === Abschnittstitel === */
.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #C28F2C;
  margin: 8px auto 0;
}

/* === Über uns === */
.section-about .section-text {
  font-size: 1rem;
  margin-top: 0.5rem;
  text-align: justify;
}

/* === Leistungen === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.service-card {
  background-color: #1a1a1a;
  padding: 1rem;
  border-radius: 6px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  border: 1px solid #2f2f2f;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.4;
}

.service-card:hover {
  transform: translateY(-5px);
  background-color: #2a2a2a;
  box-shadow: 0 0 10px #c28f2c99, 0 0 20px #c28f2c33;
}

/* === Kontakt === */
.section-contact .section-text {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}

.contact-item {
  font-size: 1rem;
  margin: 0.5rem 0;
  text-align: center;
}

.contact-item a {
  color: #C28F2C;
  text-decoration: none;
  border-bottom: 1px dashed #C28F2C;
}

.contact-item a:hover {
  color: #FFF;
  border-bottom-color: #FFF;
}

/* === Footer === */
footer {
  background-color: #111111;
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid #222;
}

footer p {
  font-size: 0.9rem;
  color: #666666;
}

/* === Scroll-Animationen === */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

/* === Gold Glow Animation === */
@keyframes goldGlow {
  0%   { text-shadow: 0 0 10px #c28f2c; }
  50%  { text-shadow: 0 0 20px #ffd700; }
  100% { text-shadow: 0 0 10px #c28f2c; }
}

/* === Responsive Breakpoints === */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-hero img {
    max-width: 160px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-tagline {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-hero img {
    max-width: 130px;
  }
}

footer a{
  color:#fff;
  font-size: 12px;
}