/* Globale Stile & Resets */
:root {
    --primary-color: #f39c12; /* Angepasste Farbe, um sie hervorzuheben */
    --secondary-color: #333;
    --light-bg: #f9f9f9;
    --dark-bg: #2c3e50;
    --white-text: #ffffff;
    --font-roboto: 'Roboto', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-roboto);
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: #fff;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 40px 0;
}

/* --- Buttons --- */
.btn {
    display: block;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-text);
    border: none;
}

.btn-primary:hover {
    background-color: #e69500;
    transform: translateY(-2px);
    text-decoration: none;
}

/* --- Header --- */
.main-header {
    background-color: #1a252f;
    padding: 10px 0;
}

.main-header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
}

.header-logo {
    display: none;
}

.header-phone {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--white-text);
}

.header-phone a {
    color: var(--white-text);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-phone a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.header-phone .call-text {
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 5px;
}

.header-phone .phone-number {
    font-size: 1.5em;
    font-weight: 700;
}

/* --- Hero Section --- */
.hero-section {
    background-color: var(--dark-bg);
    color: var(--white-text);
    text-align: center;
    padding: 60px 0;
    display: flex;
    align-items: center;
    min-height: 40vh;
}

.hero-content {
    width: 100%;
}

.hero-content .tagline {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 3em; /* Schriftgröße der Überschrift */
    font-weight: 800;
    color: var(--white-text); /* Standardfarbe für die Hauptüberschrift */
    line-height: 1.2;
    text-transform: none; /* Entfernt die Großbuchstaben */
}

.hero-content h1 .highlight {
    font-size: 0.8em; /* Kleinere Schriftgröße für "SPEEDY" */
    font-weight: 600; /* Leichterer Font-Weight */
    color: var(--primary-color); /* Behält die primäre Farbe bei */
    display: block; /* Stellt "SPEEDY" in eine neue Zeile */
    margin-bottom: 5px;
    text-transform: uppercase;
}

.hero-content .description {
    font-size: 1em;
    margin-bottom: 20px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.hero-cta .availability {
    font-family: var(--font-roboto);
    font-weight: 900;
    font-size: 1.2em;
    color: var(--primary-color);
    text-transform: uppercase;
}

/* --- Services Section --- */
.services-section {
    background-color: var(--light-bg);
    text-align: center;
}

.services-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    background-color: var(--white-text);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.service-icon {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1em;
}

/* --- About Section --- */
.about-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

.about-content {
    background-color: var(--white-text);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.about-content p {
    font-size: 1em;
    margin-bottom: 15px;
}

.about-content .highlight {
    font-weight: 700;
    color: var(--primary-color);
}

.wko-link {
    font-weight: 700;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.about-features div {
    display: flex;
    align-items: center;
    font-size: 1em;
}

.about-features .fas {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1.2em;
}

/* --- Contact Section --- */
.contact-section {
    background-color: var(--dark-bg);
    color: var(--white-text);
    text-align: center;
}

.contact-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
}

.contact-icon {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 1em;
}

.contact-item .phone-number-lg {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-item .phone-number-lg a {
    color: var(--primary-color);
}

/* --- Footer --- */
.main-footer {
    background-color: #1a252f;
    color: rgba(255, 255, 255, 0.7);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-links .separator {
    margin: 0 5px;
}

/* --- Cookie Consent Pop-up (MODAL) --- */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.cookie-modal-content {
    background-color: #fff;
    color: var(--secondary-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    width: 400px;
    text-align: center;
    box-sizing: border-box;
}

.cookie-modal-content img {
    height: 60px;
    margin-bottom: 20px;
}

.cookie-modal-content p {
    font-size: 1em;
    margin-bottom: 20px;
}

.cookie-modal-content .cookie-privacy-link {
    font-weight: 700;
}

.cookie-modal-content .cookie-accept-btn {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

/* Media Queries für Desktop */
@media (min-width: 769px) {
    body {
        font-size: 18px;
    }
    
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }
    
    .main-header .container {
        flex-direction: row;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 4em; /* Größere Schrift für den Desktop */
    }

    .hero-content h1 .highlight {
        font-size: 0.7em; /* Kleinere Größe für "SPEEDY" auf Desktop */
    }

    .section-padding {
        padding: 80px 0;
    }

    .service-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .about-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .contact-info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .cookie-modal-content {
        max-width: 500px;
    }
}