/*
Theme Name: Lift-Tour
Theme URI: https://lift-tour.com
Author: Dein Name
Description: Eigenes Theme für Lift-Tour
Version: 1.0
Text Domain: lift-tour
*/

/* ==========================================
   Allgemein
========================================== */

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: #f0f8ff;
    color: #333;
}

.container {
    width: min(1100px, 90%);
    margin: 0 auto;
}

.site-content {
    padding: 40px 0;
}

/* ==========================================
   Header
========================================== */

.site-header {
    background: #1f2937;
    color: white;
    padding: 20px 0 0;
}

.site-branding {
    margin-bottom: 20px;
}

.site-title {
    margin: 0;
}

.site-title a {
    color: white;
    text-decoration: none;
}

.site-description {
    margin-top: 5px;
    color: #d1d5db;
}

/* ==========================================
   Navigation
========================================== */

.main-menu {
    list-style: none;
    margin: 0;
    padding: 15px 0;
    display: flex;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,.2);
}

.main-menu li {
    margin: 0;
}

.main-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.main-menu a:hover {
    text-decoration: underline;
}

/* ==========================================
   Footer
========================================== */

.site-footer {
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* ==========================================
   Einzelne Seilbahn
========================================== */

.seilbahn {
    margin: 50px 0;
}

.seilbahn-header {
    margin-bottom: 40px;
}

.seilbahn-header h1 {
    margin: 0;
    font-size: 2.4rem;
    font-weight: 700;
}

.seilbahn-daten {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.seilbahn-daten h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.datenblatt {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.daten-zeile {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ececec;
}

.daten-zeile:last-child {
    border-bottom: none;
}

.daten-label {
    font-weight: 600;
    color: #666;
}

.daten-wert {
    color: #222;
}

.daten-wert a {
    color: #005fa3;
    text-decoration: none;
}

.daten-wert a:hover {
    text-decoration: underline;
}

.daten tr:last-child th,
.daten tr:last-child td {
    border-bottom: none;
}

.seilbahn-galerie,
.seilbahn-karte {
    margin-top: 60px;
}

.seilbahn-galerie h2,
.seilbahn-karte h2 {
    margin-bottom: 20px;
}
/* ==========================================
   Beschreibung
========================================== */

.seilbahn-beschreibung {
    margin: 60px 0;
}

.seilbahn-beschreibung h2 {
    margin-bottom: 20px;
}

.seilbahn-beschreibung p {
    line-height: 1.8;
}