/*
Theme Name: WinterShells
Description: Minimales Theme für winter-shells.de
Version: 1.0
Author: Holger Winter
*/

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

header {
  background: #2c3e50;
  color: white;
  padding: 20px 0;
  border-bottom: 3px solid #3498db;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

header h1 { font-size: 1.4em; font-weight: 600; }
header h1 a { color: white; text-decoration: none; }
header p.desc { color: #bdc3c7; font-size: 0.9em; }

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 0.95em;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

nav a:hover, nav a.current { border-color: #3498db; }

.container { max-width: 900px; margin: 0 auto; padding: 0 20px; }

main { padding: 40px 0; min-height: 60vh; }

main h1 { font-size: 1.8em; margin-bottom: 20px; color: #2c3e50; }
main h2 { font-size: 1.4em; margin: 25px 0 10px; color: #2c3e50; }
main h3 { font-size: 1.1em; margin: 20px 0 8px; color: #34495e; }
main p { margin-bottom: 12px; }
main a { color: #2980b9; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}

th {
  background: #2c3e50;
  color: white;
  padding: 10px;
  text-align: left;
}

td {
  padding: 8px 10px;
  border-bottom: 1px solid #ddd;
}

tr:hover { background: #f1f3f5; }

.password-form {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-width: 400px;
}

.password-form input[type=password] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 10px 0;
}

.password-form input[type=submit] {
  background: #2c3e50;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 4px;
  cursor: pointer;
}

.password-form input[type=submit]:hover { background: #34495e; }

footer {
  background: #2c3e50;
  color: #95a5a6;
  padding: 20px 0;
  text-align: center;
  font-size: 0.85em;
}

footer a { color: #bdc3c7; }

@media (max-width: 600px) {
  header .container { flex-direction: column; align-items: flex-start; }
  nav ul { gap: 12px; }
}
