/* Premium Design für Impressum-Seite */

:root {
  --primary: #5cb8c2;
  --primary-light: rgba(92, 184, 194, 0.15);
  --primary-lighter: rgba(92, 184, 194, 0.05);
  --secondary: #ff9e4f;
  --secondary-light: rgba(255, 158, 79, 0.15);
  --dark: #2d3748;
  --darker: #1a202c;
  --dark-light: #4a5568;
  --light: #f8fafc;
  --lighter: #fefefe;
  --white: #ffffff;
  --gray: #e2e8f0;
  
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 15px 40px rgba(0,0,0,0.15);
  
  --rounded-sm: 6px;
  --rounded-md: 12px;
  --rounded-lg: 16px;
  --rounded-xl: 24px;
  --rounded-full: 9999px;
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========== Basis-Styles ========== */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--lighter);
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========== Header ========== */
header {
  background: linear-gradient(135deg, var(--primary), #4aa8b5);
  color: var(--white);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 2.5rem;
  transition: var(--transition);
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
}

nav a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

nav a:hover:after {
  width: 100%;
}

.phone-link {
  background: var(--white);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: var(--rounded-full);
  font-weight: 600;
  transition: var(--transition);
}

.phone-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ========== Impressum Content ========== */
.impressum-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 0;
}

.impressum-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.impressum-hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.impressum-hero h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 2px;
}

.impressum-content {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--rounded-xl);
  box-shadow: var(--shadow-sm);
}

.impressum-section {
  margin-bottom: 3rem;
}

.impressum-section h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.impressum-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
}

.impressum-section h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin: 2rem 0 1rem;
}

.impressum-section p,
.impressum-section li {
  color: var(--dark-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.impressum-section ul {
  list-style: none;
  padding: 0;
}

.impressum-section li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}

.impressum-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 12px;
  height: 12px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%235cb8c2"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat center;
}

.contact-info {
  background: var(--primary-lighter);
  padding: 2rem;
  border-radius: var(--rounded-md);
  margin: 2rem 0;
}

.contact-info p {
  margin: 0.5rem 0;
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
  .impressum-container {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .impressum-content {
    padding: 2rem;
  }
  
  .impressum-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .impressum-hero h1 {
    font-size: 1.8rem;
  }
  
  .impressum-section h2 {
    font-size: 1.3rem;
  }
  
  .impressum-section h3 {
    font-size: 1.1rem;
  }
}