/* Legal Pages Styling (Impressum & Datenschutz) */
@import url('variables.css');

body {
  font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--color-text-dark);
  background-color: var(--color-background);
  margin: 0;
  padding: 0;
}

.landing-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Styles */
header {
  background-color: var(--color-white);
  box-shadow: var(--box-shadow-sm);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.5rem;
}

header .logo i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

/* Navigation */
.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.nav-links li {
  margin-right: 1.5rem;
}

.nav-link {
  color: var(--color-text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--color-primary);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

/* Auth Buttons */
.desktop-auth-buttons {
  display: flex;
  gap: 1rem;
}

/* Main Content */
.legal-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: var(--color-white);
  box-shadow: var(--box-shadow-md);
  border-radius: var(--border-radius);
  flex: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--color-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.2rem;
  border-bottom: 2px solid var(--color-secondary);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
}

h3 {
  font-size: 1.4rem;
  color: var(--color-secondary);
}

p {
  margin-bottom: 1.2rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.5rem;
}

.contact-info {
  background-color: var(--color-background);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
  border-left: 4px solid var(--color-primary);
}

.section-divider {
  height: 1px;
  background-color: var(--color-border);
  margin: 2.5rem 0;
}

/* Footer */
footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 2rem 0;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  text-decoration: none;
  gap: 1.5rem;
}

.footer-link {
  color: var(--color-white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom a {
  color: var(--color-white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--color-accent);
}

.footer-link:hover {
  color: var(--color-accent);
}



.last-updated {
  font-style: italic;
  color: var(--color-text-muted);
  margin-top: 3rem;
  text-align: right;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 850px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .desktop-auth-buttons {
    display: none;
  }
  
  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: var(--box-shadow-md);
    padding: 1rem;
    display: none;
  }
  
  .mobile-menu.active {
    display: block;
  }
  
  .nav-links {
    flex-direction: column;
    margin-bottom: 1rem;
  }
  
  .nav-links li {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  
  .mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .legal-container {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .legal-container {
    padding: 1rem;
    margin: 0.5rem;
  }
  
  h1 {
    font-size: 1.6rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
} 