/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-dark: #8b6914;
  --dark: #0d0d12;
  --dark-soft: #1a1a24;
  --text: #e8e8e8;
  --text-muted: #a0a0b0;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 10px 40px rgba(0,0,0,0.35);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 13, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(13, 13, 18, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 56px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
}

.nav {
  display: flex;
  gap: 32px;
  justify-content: center;
  width: 100%;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('hero.webp') center/cover no-repeat;
  background-color: #0a0a10;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,13,18,0.55) 0%,
    rgba(13,13,18,0.7) 50%,
    rgba(13,13,18,0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}

.hero-logo {
  width: 180px;
  height: 180px;
  margin: 0 auto 28px;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(201, 162, 39, 0.35);
  border: 3px solid var(--gold);
  object-fit: cover;
}

.hero h1,
.hero-title {
  position: relative;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: inline-block;
  z-index: 1;
}

/* Langsam pulsierender Heiligenschein hinter dem Titel */
.hero-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 180%;
  background: radial-gradient(
    ellipse at center,
    rgba(232, 197, 71, 0.45) 0%,
    rgba(201, 162, 39, 0.25) 35%,
    rgba(201, 162, 39, 0.08) 60%,
    transparent 75%
  );
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  animation: halo-pulse 4s ease-in-out infinite;
  filter: blur(8px);
}

@keyframes halo-pulse {
  0%, 100% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(0.92);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text);
  margin-bottom: 36px;
  font-weight: 400;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(201,162,39,0.5);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll 1.6s infinite;
}

@keyframes scroll {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 162, 39, 0.5);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-large {
  padding: 18px 48px;
  font-size: 1.05rem;
}

/* ===== Trust Bar ===== */
.trust-bar {
  background: var(--dark-soft);
  padding: 48px 0;
  border-top: 1px solid rgba(201,162,39,0.12);
  border-bottom: 1px solid rgba(201,162,39,0.12);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--gold);
}

.trust-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gold-light);
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.section-header.light h2 {
  color: var(--white);
}

.underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-intro {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== About ===== */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content .lead {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.slogan {
  margin-top: 32px;
  font-size: 1.2rem;
  color: var(--gold-light) !important;
}

/* ===== Features ===== */
.why-us {
  background: var(--dark-soft);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: rgba(201,162,39,0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: linear-gradient(145deg, rgba(26,26,36,0.9), rgba(13,13,18,0.95));
  border: 1px solid rgba(201,162,39,0.12);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== Team ===== */
.team {
  background: var(--dark-soft);
}

.team .container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.team-card {
  max-width: 700px;
  margin: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  flex: 1;
  min-width: 300px;
}

/*
.team {
  background: var(--dark-soft);
}

.team-card {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
}
*/
.team-info h3 {
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.role {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.team-info p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ===== Contact ===== */
.contact {
  background: linear-gradient(180deg, var(--dark) 0%, #12121a 100%);
  text-align: center;
}

.contact-box {
  margin-top: 20px;
}

.phone {
  margin-top: 20px;
  font-size: 1.3rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ===== Footer ===== */
.footer {
  background: #08080c;
  padding: 48px 0;
  border-top: 1px solid rgba(201,162,39,0.12);
  text-align: center;
}

.footer-logo {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-note {
  color: var(--gold) !important;
  font-weight: 500;
}

.footer-designer {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #ccc;
}

.footer-designer a {
  color: #7f5cff;
  text-decoration: none;
  font-weight: 600;
}

.footer-designer a:hover {
  color: #b29aff;
  text-shadow: 0 0 6px #7f5cff;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(13,13,18,0.98);
    flex-direction: column;
    align-items: center;
    padding: 32px 0;
    gap: 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.35s ease;
    border-bottom: 1px solid rgba(201,162,39,0.2);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .team-card {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .hero-logo {
    width: 110px;
    height: 110px;
  }
}
