/* Importierte Schriftarten */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&family=Anton&display=swap');

/* Allgemeine Stile */
body {
    font-family: 'Roboto Slab', serif;
    background-color: #2e2e2e; /* Dunkler Stahl-Look */
    color: #d4cfc9;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-image: linear-gradient(135deg, #3a3a3a 25%, #1f1f1f 25%, #1f1f1f 50%, #3a3a3a 50%, #3a3a3a 75%, #1f1f1f 75%, #1f1f1f);
    background-size: 40px 40px; /* Metallrillen-Optik */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation */
header {
    background-color: #1a1a1a;
    padding: 15px 0;
    border-bottom: 4px solid #f4a261;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(45deg, #1f1f1f, #333);
    text-align: center;
    padding: 100px 20px;
    border-bottom: 4px solid #ff7f50;
}

.hero-content {
    background: rgba(0, 0, 0, 0.8);
    display: inline-block;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #ff7f50;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.btn:hover {
    background-color: #e76f51;
}

/* Händler-Registrierung */
.haendler-banner {
    background-color: #333;
    text-align: center;
    padding: 40px 20px;
    border-top: 3px solid #f4a261;
}

/* Vorteile Sektion */
.description {
    padding: 50px 20px;
    text-align: center;
    background: #1a1a1a;
}

.vorteile {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.vorteil {
    background: #333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    transition: transform 0.3s;
}

.vorteil:hover {
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

footer a {
    color: #ff7f50;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

/* 🚀 NAVIGATION (Industrie-Stil) */
.navbar {
    background-color: #1a1a1a;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid #f4a261;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* 🏭 Logo */
.navbar .logo h1 {
    color: #f4a261;
    font-size: 28px;
    margin: 0;
    text-transform: uppercase;
    transition: transform 0.3s ease-in-out;
}

.navbar .logo h1:hover {
    transform: scale(1.1);
}

/* 🌍 Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    color: #f4a261;
    font-weight: bold;
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 5px;
}

.nav-links a:hover {
    color: #ff7f50;
    transform: scale(1.1);
    background: rgba(255, 127, 80, 0.2);
}

/* 🍔 BURGER-MENÜ (Mobil) */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
}

.burger-menu .bar {
    width: 35px;
    height: 4px;
    background-color: #f4a261;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* 🔥 ANIMATION für BURGER-KLICK */
.burger-menu.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.burger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* 📱 FULLSCREEN-MOBILE NAVIGATION */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(26, 26, 26, 0.98);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s;
    }

    .nav-links.show {
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 24px;
        padding: 15px;
        display: block;
        color: #f4a261;
        font-weight: bold;
        transition: color 0.3s, transform 0.2s;
    }

    .nav-links a:hover {
        color: #ff7f50;
        transform: scale(1.1);
    }

    .burger-menu {
        display: flex;
    }
}

/* 🌍 Allgemeine Stile für Termine-Seite */
.termine {
    padding: 50px 20px;
    text-align: center;
    background: #1a1a1a;
    color: #f4f4f4;
}

.termine h2 {
    font-size: 28px;
    color: #f4a261;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.termine p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #d4cfc9;
}

/* 📅 Termine-Liste */
.termine-liste {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}

.termin {
    background: #333;
    border-left: 5px solid #f4a261;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 600px;
    transition: transform 0.3s ease-in-out;
}

.termin:hover {
    transform: scale(1.05);
}

.termin h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #ff7f50;
}

.termin p {
    font-size: 16px;
    margin: 5px 0;
    color: #d4cfc9;
}

.termin i {
    color: #f4a261;
    margin-right: 5px;
}

/* 🗺️ Google Maps Container */
.map-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
    .termine {
        padding: 40px 10px;
    }

    .termin {
        width: 95%;
    }
}

/* 🎪 Händler Registrierung */
.haendler-registrierung {
    padding: 60px 20px;
    background: #1a1a1a;
    color: #f4f4f4;
    text-align: center;
}

.haendler-registrierung h2 {
    font-size: 28px;
    color: #f4a261;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.haendler-registrierung p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #d4cfc9;
}

/* 📄 Händler-Formular */
.haendler-form {
    max-width: 600px;
    margin: 0 auto;
    background: #333;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

/* 🏷️ Formular Labels */
.haendler-form label {
    font-size: 16px;
    font-weight: bold;
    color: #f4a261;
    text-align: left;
    margin-bottom: 5px;
}

/* 🖊️ Eingabefelder */
.haendler-form input,
.haendler-form select,
.haendler-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background: #444;
    color: white;
    font-size: 16px;
}

/* Placeholder Farbe */
.haendler-form input::placeholder,
.haendler-form textarea::placeholder {
    color: #aaa;
}

/* 📩 Submit-Button */
.haendler-form button {
    background-color: #f4a261;
    padding: 12px;
    font-size: 18px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

.haendler-form button:hover {
    background-color: #e76f51;
    transform: scale(1.05);
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
    .haendler-registrierung {
        padding: 40px 10px;
    }

    .haendler-form {
        width: 90%;
    }
}

/* 💰 Preis-Infobox */
.preis-info-box {
    font-size: 20px;
    font-weight: bold;
    color: #f4a261;
    background: #222;
    padding: 12px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* ℹ️ Infotext für Preis */
.preis-info-text {
    font-size: 16px;
    color: #d4cfc9;
    margin-top: 5px;
    text-align: left;
    max-width: 600px;
}

/* 🏗️ Zusatzausstattungs-Container */
#zusatz-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
    justify-content: center;
}

/* ✅ Checkbox-Styling */
.zusatz-option {
    display: flex;
    align-items: center;
    background: #2a2a2a;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border: 2px solid transparent;
    font-size: 16px;
    color: #f4f4f4;
    min-width: 220px;
    text-align: left;
}

.zusatz-option:hover {
    background: #3a3a3a;
    border-color: #f4a261;
}

/* 🏗️ Checkbox-Styling */
.zusatz-option input {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: #444;
    border: 2px solid #f4a261;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.zusatz-option input:checked {
    background-color: #f4a261;
    border-color: #ff7f50;
}

.zusatz-option input:checked::after {
    content: '✔';
    color: #1a1a1a;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
}

/* ℹ️ Infotext für Zusatzoptionen */
.zusatz-info-text {
    font-size: 16px;
    color: #d4cfc9;
    margin-top: 5px;
    text-align: center;
    max-width: 600px;
}

/* 💰 Zusatzkosten-Anzeige */
#zusatz-preis-info {
    font-size: 18px;
    font-weight: bold;
    color: #f4a261;
    background: #222;
    padding: 12px 15px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}
    

.hidden {
    display: none;
}

#response-message {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: #27ae60;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-top: 10px;
}

#response-message.error {
    background: #e74c3c;
}

/* Kontakt-Seite */
.kontakt {
    background-color: #f8f9fa;
    padding: 50px 20px;
    text-align: center;
}

.kontakt h2 {
    font-size: 32px;
    color: #2e2e2e;
    margin-bottom: 20px;
}

.kontakt p {
    font-size: 18px;
    color: #333;
    margin-bottom: 40px;
}

.kontakt-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.kontakt-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
}

.kontakt-form label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #555;
}

.kontakt-form input,
.kontakt-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    box-sizing: border-box;
}

.kontakt-form textarea {
    resize: vertical;
    min-height: 150px;
}

.kontakt-form button {
    background-color: #ff7f50;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.kontakt-form button:hover {
    background-color: #e76f51;
}

.kontakt-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
}

.kontakt-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2e2e2e;
}

.kontakt-info p {
    font-size: 16px;
    color: #333;
}

.kontakt-info a {
    color: #ff7f50;
    text-decoration: none;
}

.kontakt-info a:hover {
    text-decoration: underline;
}

/* Google Maps */
.map-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

footer a {
    color: #ff7f50;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

/* Impressum */
.impressum {
    background-color: #f8f9fa;
    padding: 50px 20px;
    text-align: center;
}

.impressum .container {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.impressum h2 {
    font-size: 32px;
    color: #2e2e2e;
    margin-bottom: 20px;
    text-align: center;
}

.impressum p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.impressum a {
    color: #ff7f50;
    text-decoration: none;
    font-weight: bold;
}

.impressum a:hover {
    text-decoration: underline;
}

.absage-banner {
  background-color: #ffe4e1;
  color: #b30000;
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  border-bottom: 2px solid #b30000;
}

.absage-banner .container {
  max-width: 960px;
  margin: 0 auto;
}

