/* Grundlegende Styles */
@import url("https://fonts.googleapis.com/css?family=Aclonica|Poppins:300,400,500,600&display=swap");

/* Hauptfarben */
:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --accent-color: #FFE66D;
    --background-color: #F7F9FC;
    --text-color: #1A1A1A;
    --text-color-light: #4A4A4A;
    --card-bg: #FFFFFF;
    --gradient-start: #FF6B6B;
    --gradient-end: #4ECDC4;
}

/* Allgemeine Styles */
body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.body_bg {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    min-height: 100vh;
}

/* Text Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: "Aclonica", sans-serif;
    color: var(--text-color);
    font-weight: 700;
}

p {
    font-family: "Poppins", sans-serif;
    line-height: 1.8;
    color: var(--text-color-light);
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    background: linear-gradient(90deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    position: relative;
    z-index: 1050;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    text-decoration: underline;
}

.navbar-light .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.8);
}

.menu_icon i {
    color: #ffffff;
    font-size: 1.5rem;
}

.navbar-light .navbar-toggler-icon {
    filter: invert(1) brightness(100);
}

/* Dropdown-Menü Styling */
.dropdown-menu {
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    margin-top: 8px;
    min-width: calc(100% + 10px);
}

.dropdown-item {
    color: #495057;
    padding: 8px 20px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    position: relative;
}

.dropdown-item:hover {
    background-color: #e9ecef;
    color: #212529;
    padding-left: 25px;
}

.dropdown-item.active {
    background-color: #e9ecef;
    color: #212529;
    font-weight: 500;
}

.dropdown-divider {
    border-top: 1px solid #dee2e6;
    margin: 8px 0;
}

/* Anpassung der Dropdown-Pfeile */
.dropdown-toggle::after {
    border-top-color: #495057;
    transition: transform 0.2s ease;
}

.dropdown-toggle:hover::after {
    border-top-color: #212529;
}

/* Anpassung der Dropdown-Header */
.dropdown-header {
    color: #6c757d;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 20px;
}

/* Anpassung der Dropdown-Text-Elemente */
.dropdown-item-text {
    color: #6c757d;
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Anpassung der Dropdown-Form-Elemente */
.dropdown-menu form {
    padding: 8px 20px;
}

.dropdown-menu .form-control {
    border-color: #dee2e6;
    border-radius: 4px;
}

.dropdown-menu .form-control:focus {
    border-color: #adb5bd;
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.15);
}

/* Anpassung der Dropdown-Buttons */
.dropdown-menu .btn {
    width: 100%;
    margin-top: 8px;
    background-color: #e9ecef;
    border-color: #dee2e6;
    color: #495057;
}

.dropdown-menu .btn:hover {
    background-color: #dee2e6;
    border-color: #ced4da;
    color: #212529;
}

/* Anpassung der Dropdown-Checkboxen und Radio-Buttons */
.dropdown-menu .form-check-input {
    border-color: #dee2e6;
}

.dropdown-menu .form-check-input:checked {
    background-color: #6c757d;
    border-color: #6c757d;
}

.dropdown-menu .form-check-label {
    color: #495057;
}

/* Anpassung der Dropdown-Badges */
.dropdown-menu .badge {
    background-color: #e9ecef;
    color: #495057;
    font-weight: 500;
}

/* Anpassung der Dropdown-Icons */
.dropdown-menu .bi {
    color: #6c757d;
    margin-right: 8px;
}

/* Anpassung der Dropdown-Submenüs */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -8px;
    margin-left: 0;
    border-radius: 8px;
}

/* Anpassung der Dropdown-Scrollbars */
.dropdown-menu {
    max-height: 300px;
    overflow-y: auto;
}

.dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #ced4da;
}

/* Anpassung der Dropdown-Animation */
.dropdown-menu.show {
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Anpassung der Dropdown-Responsive */
@media (max-width: 768px) {
    .dropdown-menu {
        width: 100%;
        margin-top: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .dropdown-submenu .dropdown-menu {
        position: static;
        margin-left: 20px;
        border-left: 2px solid #e9ecef;
    }
}

/* Banner Bereich */
.banner_part {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.banner_part::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 0;
}

.banner_content {
    position: relative;
    z-index: 1;
}

.banner_text_wrapper {
    max-width: 720px;
}

.hero-title {
    color: var(--text-color);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
    position: relative;
    z-index: 1;
}

.hero-description {
    color: var(--text-color-light);
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
}

/* Button Styles */
.action-button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Logo Animation */
.banner_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.banner_logo::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    z-index: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    pointer-events: none;
}

.dokomi-logo {
    max-width: 200px;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35)) contrast(1.2) saturate(1.2);
    transition: transform 0.3s ease;
    opacity: 1;
    position: relative;
    z-index: 2;
}

.dokomi-logo:hover {
    transform: scale(1.05);
}

.banner_img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

/* Footer */
.footer_part {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding: 60px 0 20px;
    color: var(--text-color);
}

.footer_part h4 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.footer_part p, 
.footer_part a {
    color: var(--text-color-light);
    transition: color 0.3s;
}

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

.footer-divider {
    border-top: 2px solid #e0e0e0;
    margin: 0;
}

/* Responsive Anpassungen */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .banner_content {
        padding-top: 20px;
    }

    .banner_img {
        margin: 2rem auto;
        text-align: center;
        max-width: 100%;
    }

    .dokomi-logo {
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }

    .footer_part {
        padding: 40px 0 20px;
    }
}

@media (max-width: 576px) {
    .banner_part {
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* Card Styles */
.card {
    background: #fff !important;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: #1A1A1A;
    position: relative;
    z-index: 1;
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    padding: 2rem;
    color: #1A1A1A;
    position: relative;
    z-index: 1;
}

/* Form Styles */
.form-control {
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    padding: 12px;
    transition: all 0.3s ease;
    background: #fff !important;
    color: #1A1A1A !important;
    font-size: 1rem;
    font-weight: 500;
}

.form-control::placeholder {
    color: #888 !important;
    opacity: 1;
    font-weight: 400;
}

label {
    color: #1A1A1A;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

/* Alert Styles */
.alert {
    border-radius: 10px;
    border: none;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert-success {
    background-color: #D4EDDA;
    color: #155724;
}

.alert-danger {
    background-color: #F8D7DA;
    color: #721C24;
}

.alert-info {
    background-color: #D1ECF1;
    color: #0C5460;
}

/* Animationen */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.banner_logo img {
    animation: float 3s ease-in-out infinite;
}

/* Input Group Styles */
.input-group-text {
    background-color: var(--card-bg);
    border: 2px solid #E0E0E0;
    color: var(--text-color);
    font-weight: 500;
}