/*
Theme Name: MainPutzfee
Theme URI: https://mainputzfee.de
Author: ChatCore
Author URI: https://chatcore.eu
Description: Custom theme for MainPutzfee cleaning service
Version: 1.0.0
License: GPL v2
Text Domain: mainputzfee
*/

/* CSS Variables */
:root {
  --color-primary: #1e3a8a;
  --color-primary-light: #3b82f6;
  --color-primary-dark: #1e40af;
  --color-accent: #60a5fa;
  --color-background: #ffffff;
  --color-background-alt: #f0f9ff;
  --color-text: #1f2937;
  --color-text-light: #6b7280;
  
  --font-heading: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  
  --spacing-section: 80px;
  --spacing-component: 40px;
  --spacing-element: 20px;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-background);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: var(--color-background);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.logo {
  height: 60px;
}

.main-nav {
  margin-left: auto;
  display: flex;
  gap: 30px;
}

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

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

.cta-button {
  background: var(--color-primary);
  color: white !important;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
}

.cta-button:hover {
  background: var(--color-primary-dark);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
  color: white;
  padding: 120px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.hero-button {
  background: white;
  color: var(--color-primary);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Services */
.services {
  padding: var(--spacing-section) 5%;
  background: var(--color-background-alt);
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: var(--color-primary);
  margin-bottom: 60px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--color-background-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
}

.service-card h3 {
  color: var(--color-primary);
  margin-bottom: 15px;
}

/* Footer */
.site-footer {
  background: #1f2937;
  color: white;
  padding: 60px 5% 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-section h4 {
  color: var(--color-accent);
  margin-bottom: 20px;
}

.footer-section a {
  color: #9ca3af;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #374151;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .main-nav {
    display: none;
  }
  
  .section-title {
    font-size: 28px;
  }
}
