/*
Theme Name: Custom Auto Theme
Author: System
Version: 1.0
*/
/* Bretaku - WordPress Informationsseite */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --wp-primary: #6b21a8;
  --wp-primary-dark: #581c87;
  --wp-primary-light: #7c3aed;
  --wp-bg-dark: #3b0764;
  --wp-bg-light: #f9fafb;
  --wp-text-dark: #111827;
  --wp-text-light: #6b7280;
  --wp-white: #ffffff;
  --wp-border: #e5e7eb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Work Sans', sans-serif;
  color: var(--wp-text-dark);
  line-height: 1.7;
  background: var(--wp-bg-light);
}

.wp-header {
  background: var(--wp-bg-dark);
  color: var(--wp-white);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.wp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wp-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--wp-white);
  text-decoration: none;
}

.wp-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.wp-nav a {
  color: var(--wp-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.wp-nav a:hover {
  color: var(--wp-primary-light);
}

.wp-breadcrumbs {
  max-width: 1200px;
  margin: 1.5rem auto;
  padding: 0 1.5rem;
  font-size: 0.875rem;
  color: var(--wp-text-light);
}

.wp-breadcrumbs a {
  color: var(--wp-primary);
  text-decoration: none;
}

.wp-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--wp-primary);
  width: 0%;
  z-index: 2000;
  transition: width 0.1s;
}

.wp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
}

.wp-main-content {
  background: var(--wp-white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.wp-hero-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 2rem;
  object-fit: cover;
  max-height: 450px;
}

.wp-article-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--wp-border);
}

.wp-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--wp-text-light);
}

.wp-category {
  background: var(--wp-primary);
  color: var(--wp-white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.wp-article h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--wp-text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.wp-article h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--wp-text-dark);
  margin: 2.5rem 0 1.25rem;
}

.wp-article h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--wp-text-dark);
  margin: 2rem 0 1rem;
}

.wp-lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--wp-text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.wp-article p {
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

.wp-blockquote {
  border-left: 4px solid var(--wp-primary);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: #faf5ff;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--wp-text-dark);
}

.wp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2.5rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--wp-border);
}

.wp-tag {
  background: #f3f4f6;
  color: var(--wp-text-dark);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s;
}

.wp-tag:hover {
  background: var(--wp-primary);
  color: var(--wp-white);
}

.wp-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.wp-sidebar-block {
  background: var(--wp-white);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.wp-sidebar-block h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--wp-text-dark);
}

.wp-sidebar-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--wp-border);
}

.wp-sidebar-item:last-child {
  border-bottom: none;
}

.wp-sidebar-item a {
  text-decoration: none;
  color: var(--wp-text-dark);
  display: block;
  transition: color 0.3s;
}

.wp-sidebar-item a:hover {
  color: var(--wp-primary);
}

.wp-sidebar-item-title {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.wp-sidebar-item-desc {
  font-size: 0.8125rem;
  color: var(--wp-text-light);
}

.wp-related-posts {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid var(--wp-border);
}

.wp-related-posts h2 {
  margin-top: 0;
}

.wp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.wp-related-card {
  background: var(--wp-white);
  border: 1px solid var(--wp-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: var(--wp-text-dark);
}

.wp-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.wp-related-card-content {
  padding: 1.5rem;
}

.wp-related-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.wp-related-card p {
  font-size: 0.875rem;
  color: var(--wp-text-light);
  margin: 0;
}

.wp-form {
  background: linear-gradient(135deg, var(--wp-primary) 0%, var(--wp-bg-dark) 100%);
  padding: 2.5rem;
  border-radius: 12px;
  color: var(--wp-white);
}

.wp-form h3 {
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
  color: var(--wp-white);
}

.wp-form-group {
  margin-bottom: 1.25rem;
}

.wp-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.wp-form-group input {
  width: 100%;
  padding: 0.875rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Work Sans', sans-serif;
}

.wp-btn {
  background: var(--wp-primary);
  color: var(--wp-white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Work Sans', sans-serif;
  width: 100%;
}

.wp-btn:hover {
  background: var(--wp-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 33, 168, 0.3);
}

.wp-footer {
  background: var(--wp-bg-dark);
  color: var(--wp-white);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.wp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wp-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.wp-footer h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.wp-footer-links {
  list-style: none;
}

.wp-footer-links li {
  margin-bottom: 0.75rem;
}

.wp-footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.wp-footer-links a:hover {
  color: var(--wp-white);
}

.wp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #d1d5db;
}

.wp-disclaimer {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 1rem;
  font-style: italic;
}

.wp-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--wp-bg-dark);
  color: var(--wp-white);
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  z-index: 3000;
  display: none;
}

.wp-cookie-banner.active {
  display: block;
}

.wp-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.wp-cookie-text {
  flex: 1;
  font-size: 0.9375rem;
}

.wp-policy-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.wp-policy-content {
  background: var(--wp-white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.wp-policy-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.wp-policy-content h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1.25rem;
}

.wp-policy-content p {
  margin-bottom: 1.25rem;
}

.wp-policy-content ul {
  margin: 1rem 0 1.5rem 2rem;
}

.wp-policy-content li {
  margin-bottom: 0.75rem;
}

.wp-success-page {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

.wp-success-content {
  background: var(--wp-white);
  padding: 4rem 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.wp-success-icon {
  width: 80px;
  height: 80px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.wp-success-content h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--wp-text-dark);
}

.wp-success-content p {
  font-size: 1.125rem;
  color: var(--wp-text-light);
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .wp-container {
    grid-template-columns: 1fr;
  }
  
  .wp-sidebar {
    position: static;
  }
  
  .wp-related-grid {
    grid-template-columns: 1fr;
  }
  
  .wp-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .wp-nav {
    display: none;
  }
  
  .wp-main-content {
    padding: 2rem 1.5rem;
  }
  
  .wp-article h1 {
    font-size: 2rem;
  }
  
  .wp-cookie-content {
    flex-direction: column;
  }
}