/* Taxi Express - Custom CSS */

/* Grundlegende Reset- und Typography-Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header Styles */
.header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #f60b0b;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/1920/11844415/1.jpg') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 80px;
}

/* Fallback für Hero Section */
.hero-fallback {
    background: linear-gradient(135deg, #f60b0b 0%, #d40909 100%) !important;
}

/* Responsive Bilder */
.hero {
    /* Verschiedene Auflösungen für bessere Performance */
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/576/11844415/1.jpg');
}

@media (min-width: 768px) {
    .hero {
        background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/1200/11844415/1.jpg');
    }
}

@media (min-width: 1200px) {
    .hero {
        background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/1920/11844415/1.jpg');
    }
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Form Styles */
.form-container {
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 15px;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #f60b0b;
    box-shadow: 0 0 0 3px rgba(246, 11, 11, 0.1);
}

.form-control::placeholder {
    color: #999;
}

/* Button Styles */
.btn {
    background: linear-gradient(45deg, #f60b0b, #d40909);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(246, 11, 11, 0.4);
}

.btn:active {
    transform: translateY(0);
}

/* Message Styles */
.message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    font-weight: 500;
}

.wv-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wv-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5em;
    color: #333;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f60b0b;
    border-radius: 2px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-box {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-box h3 {
    color: #f60b0b;
    margin-bottom: 20px;
    font-size: 1.3em;
    font-weight: 600;
}

.service-box p {
    color: #666;
    line-height: 1.8;
}

/* CAPTCHA Styles */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.captcha-question {
    font-weight: 600;
    color: #333;
    font-size: 18px;
}

.captcha-input {
    width: 100px;
    text-align: center;
    font-weight: 600;
}

/* Checkbox Styles */
input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

label a {
    color: #f60b0b;
    text-decoration: underline;
}

/* Contact Info */
.contact-info {
    background: #333;
    color: white;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.contact-box {
    text-align: center;
    padding: 30px;
}

.contact-box h3 {
    color: #f60b0b;
    margin-bottom: 15px;
}

.contact-box .phone {
    font-size: 1.5em;
    font-weight: 600;
    margin: 15px 0;
}

/* Footer */
.footer {
    background: #222;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer a {
    color: #f60b0b;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }
    
    .form-container {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2em;
    }
    
    .form-container {
        padding: 20px 15px;
    }
    
    .captcha-container {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .captcha-input {
        width: 100%;
        margin-top: 10px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top-color: #f60b0b;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}