/* Grundlegende Styles */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Comfortaa:wght@300;400;500;600;700&display=swap');

/* Hauptfarben - Harajuku Style */
:root {
    --primary-color: #FF69B4; /* Hot Pink */
    --secondary-color: #87CEEB; /* Sky Blue */
    --accent-color: #FFD700; /* Gold */
    --background-color: #FFF0F5; /* Lavender Blush */
    --text-color: #4A4A4A;
    --text-color-light: #666666;
    --card-bg: #FFFFFF;
    --gradient-start: #FF69B4;
    --gradient-end: #87CEEB;
}

/* Allgemeine Styles */
body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff69b4' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.body_bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* Text Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Comfortaa', cursive;
    color: var(--text-color);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 20px 20px;
    padding: 1rem 0;
    position: relative;
    z-index: 1050;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-light .navbar-nav .nav-link:hover::after {
    width: 80%;
}

.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;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    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;
    }

    .action-button {
        margin-bottom: 2.5rem;
    }
}

/* Card Styles */
.card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-body {
    padding: 2rem;
}

/* Form Styles */
.form-control {
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 105, 180, 0.25);
}

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

/* Alert Styles */
.alert {
    border-radius: 15px;
    border: none;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background: linear-gradient(45deg, #98FB98, #90EE90);
    color: #2E7D32;
}

.alert-danger {
    background: linear-gradient(45deg, #FFB6C1, #FFC0CB);
    color: #C62828;
}

.alert-info {
    background: linear-gradient(45deg, #87CEEB, #B0E0E6);
    color: #1565C0;
}

/* 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;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        border-radius: 0;
    }
    
    .card {
        margin-bottom: 1.5rem;
    }
    
    .action-button {
        width: 100%;
        margin-bottom: 2rem;
    }
}