/*
Theme Name: Simple Landing Page
Theme URI: http://example.com
Description: Ein einfaches WordPress Theme für Landing Pages
Version: 1.0
Author: Dein Name
Author URI: http://example.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Header / Navigation */
header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #0066cc;
}

nav a {
  margin-left: 30px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #0066cc;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0066cc 0%, #004399 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.cta-button {
  display: inline-block;
  background-color: #fff;
  color: #0066cc;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Main Content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

main {
  background-color: white;
  padding: 60px 20px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.feature-box {
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  background-color: #f0f4f8;
  transition: transform 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box h3 {
  color: #0066cc;
  margin-bottom: 15px;
  font-size: 20px;
}

.feature-box p {
  color: #666;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
}

footer p {
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .header-content {
    flex-direction: column;
    text-align: center;
  }

  nav a {
    margin: 10px 15px;
    display: inline-block;
  }
}
