/* General Dark Theme Styles */
body {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff;
}

/* Navbar */
.navbar-brand {
    color: #ffc107 !important;
    font-weight: bold;
}

.navbar-dark .navbar-nav .nav-link {
    color: #e0e0e0;
    /* Erhöhter Kontrast (heller als Standard) */
    font-size: 1.05rem;
    /* Leicht vergrößert */
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #ffc107;
    /* Same as .text-warning */
}

/* Hero Section */
.hero-section {
    background: url('../img/fahrzeug.png') no-repeat center 25%;
    background-size: cover;
    padding: 150px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    /* Darker overlay */
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Hinzugefügter Text-Schatten für bessere Lesbarkeit */
.hero-section h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-section .lead {
    color: #d4d4d4;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
    /* Hinzugefügter Text-Schatten */
}

/* Section Styling */
section {
    border-bottom: 1px solid #333;
}


/* Services Section Cards */
#services {
    background-color: #222222;
}

.card {
    background-color: #2c2c2c;
    border: 1px solid #444;
    transition: transform 0.3s, box-shadow 0.3s;
    color: #e0e0e0;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.card-title {
    color: #ffc107;
}

.bg-custom-dark-card {
    background-color: #2c2c2c;
}

/* Components */
.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
}

/* Vehicle Section */
#vehicle {
    background-color: #1a1a1a;
}

#vehicle ul {
    list-style: none;
    padding-left: 0;
}

#vehicle ul li::before {
    content: '✓';
    color: #ffc107;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Gallery Section */
#gallery {
    background-color: #222222;
}

#gallery img {
    border: 2px solid #444;
    transition: transform 0.3s, border-color 0.3s;
}

#gallery img:hover {
    transform: scale(1.05);
    border-color: #ffc107;
}

/* Contact Form */
.form-control-dark {
    background-color: #2c2c2c;
    color: #e0e0e0;
    border-color: #444;
}

.form-control-dark:focus {
    background-color: #2c2c2c;
    color: #e0e0e0;
    border-color: #ffc107;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

/* Footer */
footer.bg-dark {
    background-color: #000 !important;
}

/* Links and Buttons */
a {
    color: #ffc107;
}

a:hover {
    color: #ffd966;
}

.btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #1a1a1a;
    font-weight: bold;
}

.btn-warning:hover {
    background-color: #ffd966;
    border-color: #ffd966;
    color: #1a1a1a;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section h1.display-3 {
        font-size: 2rem;
        /* Adjust font size for smaller screens */
    }
}