/* ===================================
   AUTOREPARATURWERKSTATT - STYLESHEET
   Separate CSS-Datei für Werkstatt-Leistungen
   =================================== */

/* ===================================
   BASIS-STYLING
   =================================== */

/* Reset für alle Elemente */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Hauptcontainer */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* ===================================
   HAUPTCONTAINER
   =================================== */

/* Wrapper für gesamten Inhalt */
.werkstatt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ===================================
   HEADER-BEREICH
   =================================== */

/* Hauptüberschrift der Seite */
.werkstatt-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 0px 20px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Haupttitel im Header */
.werkstatt-header-title {
    font-size: 2.5em;
    margin-bottom: 10px;
}

/* Untertitel im Header */
.werkstatt-header-subtitle {
    font-size: 1.2em;
    opacity: 0.9;
}

/* ===================================
   FAHRZEUGTYPEN-BEREICH
   =================================== */

/* Container für Fahrzeugtypen-Sektion */
.werkstatt-vehicle-types-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Überschrift für Fahrzeugtypen */
.werkstatt-vehicle-types-heading {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.8em;
}

/* Grid-Layout für Fahrzeugtypen-Badges */
.werkstatt-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

/* Einzelne Fahrzeugtyp-Badges */
.werkstatt-type-badge {
    background: #3498db;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

/* ===================================
   SERVICES-BEREICH
   =================================== */

/* Grid-Layout für Service-Karten */
.werkstatt-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Einzelne Service-Karte */
.werkstatt-service-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover-Effekt für Service-Karten */
.werkstatt-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Überschrift innerhalb einer Service-Karte */
.werkstatt-service-card-title {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5em;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
}

/* Liste der Services in einer Karte */
.werkstatt-service-list {
    list-style: none;
    padding-left: 0;
}

/* Einzelner Service-Listenpunkt */
.werkstatt-service-list-item {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

/* Häkchen-Symbol vor jedem Listenpunkt */
.werkstatt-service-list-item:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2em;
}

/* ===================================
   HINWEIS-BOX
   =================================== */

/* Hinweis-/Info-Box am Ende */
.werkstatt-note-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.werkstatt-note-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/files/00-img-fav-logo-heros-overlay-zerti/bg-overlay.png');
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    pointer-events: none;
    z-index: 0;
}

.werkstatt-note-box > * {
    position: relative;
    z-index: 2;
}

/* ===================================
   FOOTER-BEREICH
   =================================== */

/* Footer am Seitenende */
.werkstatt-footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

/* Absätze im Footer */
.werkstatt-footer-text {
    margin: 5px 0;
}
