/* ===== SanWay Website – style.css ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,800;1,400&family=DM+Sans:wght@400;500;600;700&display=swap');

/* --- Reset & Variables --- */
:root {
  --navy: #0a1628;
  --navy-light: #132240;
  --orange: #e8651a;
  --orange-light: #f0863e;
  --cream: #f5f0eb;
  --white: #ffffff;
  --gray-100: #f7f7f8;
  --gray-200: #e5e5e7;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* --- Navigation --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(180deg, rgba(10,22,40,0.93), rgba(10,22,40,0.80));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--navy-light);
  padding: 0 1.5rem;
}
.navbar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.navbar-logo img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--gray-400);
  padding: 0.25rem 0; border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--orange); border-bottom-color: var(--orange);
}

/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--cream); font-size: 1.6rem; padding: 0.5rem;
}
.mobile-menu {
  display: none; background: var(--navy);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(19,34,64,0.5);
}
.mobile-menu a {
  display: block; padding: 0.75rem 0; font-size: 1rem; font-weight: 500;
  color: var(--gray-400); border-bottom: 1px solid rgba(19,34,64,0.3);
  transition: color 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--orange); }
.mobile-menu.open { display: block; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 6rem 2rem 4rem; position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 30% 20%, var(--navy-light) 0%, var(--navy) 70%);
}
.hero-circle-1, .hero-circle-2 {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(232,101,26,0.08);
  animation: pulse 6s ease-in-out infinite;
}
.hero-circle-1 { top: 10%; right: 5%; width: 300px; height: 300px; }
.hero-circle-2 { bottom: 15%; left: 8%; width: 200px; height: 200px; animation-duration: 8s; animation-delay: 2s; }

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-logo-wrap {
  display: inline-block; margin-bottom: 2rem;
}
.hero-logo-wrap img { height: 90px; width: auto; display: block; }
.hero-tagline {
  font-family: 'Playfair Display', Georgia, serif; font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.3rem); color: var(--gray-400);
  margin-bottom: 3rem; letter-spacing: 0.05em;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem); color: var(--cream);
  line-height: 1.15; margin-bottom: 1.5rem; font-weight: 700;
}
.hero h1 .accent { color: var(--orange); }
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem); color: var(--gray-400);
  line-height: 1.7; max-width: 600px; margin: 0 auto 3rem;
}
.btn-primary {
  display: inline-block; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.03em;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white); border: none; border-radius: 50px;
  padding: 1rem 2.5rem; cursor: pointer;
  box-shadow: 0 4px 24px rgba(232,101,26,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,101,26,0.4);
}

/* --- Leistungen Section --- */
.section-light { padding: 6rem 2rem; background: var(--gray-100); }
.section-dark {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 800px; margin: 0 auto; }

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center; margin-bottom: 1rem;
}
.section-title-navy { color: var(--navy); }
.section-title-cream { color: var(--cream); }
.section-title .accent { color: var(--orange); }
.section-subtitle {
  color: var(--gray-600); text-align: center;
  max-width: 600px; margin: 0 auto 3rem;
  font-size: 1.05rem; line-height: 1.6;
}

.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white); border-radius: 16px; padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border-top: 3px solid var(--orange);
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 {
  font-size: 1.15rem; font-weight: 700; color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-card p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.6; }

/* --- Philosophie --- */
.philosophie-text {
  font-size: 1.1rem; color: var(--gray-400); line-height: 1.8;
  margin-bottom: 2rem; text-align: center;
}
.philosophie-quote {
  font-family: 'Playfair Display', Georgia, serif; font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.8rem); color: var(--orange);
  text-align: center;
}

/* --- Kontakt --- */
.kontakt-box {
  background: var(--white); border-radius: 16px; padding: 2.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.kontakt-item { display: flex; gap: 1rem; align-items: flex-start; }
.kontakt-icon { font-size: 1.5rem; margin-top: 2px; flex-shrink: 0; }
.kontakt-label {
  font-weight: 700; color: var(--navy); font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px;
}
.kontakt-value { color: var(--gray-600); font-size: 0.95rem; line-height: 1.5; }

/* --- Footer --- */
.footer {
  background: var(--navy); padding: 3rem 2rem 1.5rem;
  border-top: 1px solid var(--navy-light);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: flex-start; gap: 2rem;
}
.footer-logo img { height: 36px; width: auto; display: block; }
.footer-tagline {
  font-size: 0.85rem; color: var(--gray-400); margin-top: 0.75rem;
}
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.85rem; color: var(--gray-400);
  text-decoration: underline; text-decoration-color: rgba(156,163,175,0.3);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1100px; margin: 2rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid var(--navy-light); text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray-400); }

/* --- Legal Pages (Impressum / Datenschutz) --- */
.legal-header {
  padding: 6rem 2rem 2rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.legal-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem); color: var(--cream);
  max-width: 800px; margin: 0 auto;
}
.legal-body {
  padding: 3rem 2rem 6rem; background: var(--white);
}
.legal-content {
  max-width: 800px; margin: 0 auto;
  font-size: 0.95rem; line-height: 1.8; color: var(--gray-800);
}
.legal-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem; color: var(--navy);
  margin-top: 2.5rem; margin-bottom: 0.75rem;
}
.legal-content h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--navy);
  margin-top: 1.5rem; margin-bottom: 0.5rem;
}
.legal-content p { margin-bottom: 1rem; }

.legal-hint {
  margin-top: 2rem; padding: 1.25rem; background: var(--gray-100);
  border-radius: 12px; border-left: 4px solid var(--orange);
}
.legal-hint-title {
  font-weight: 700; color: var(--orange);
  margin-bottom: 0.5rem; font-size: 0.9rem;
}
.legal-hint p {
  font-size: 0.88rem; color: var(--gray-600); margin-bottom: 0;
}
