/* ============================================
   HERO / BREADCRUMB BEREICH - GLOBAL
   Verwendet für Seitentitel und Navigation
   ============================================ */

/* ===== Hero Container ===== */
.hero-breadcrumb-area {
    background: linear-gradient(135deg, #0096ff 0%, #0077cc 100%);
    padding: 10rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}

/* Optionales Hintergrundmuster */
.hero-breadcrumb-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-breadcrumb-inner {
    position: relative;
    z-index: 1;
    text-align: left;
}

/* ===== Breadcrumb Navigation ===== */
.hero-breadcrumb-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.hero-breadcrumb-nav li {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.hero-breadcrumb-nav li:not(:last-child)::after {
    content: '/';
    color: rgba(255, 255, 255, 0.5);
    margin-left: 0.5rem;
    font-size: 0.875rem;
}

.hero-breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.938rem;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 0.25rem 0;
}

.hero-breadcrumb-nav a:hover {
    color: #ffffff;
    text-decoration: none;
}

.hero-breadcrumb-nav li.active {
    color: #ffffff;
    font-size: 0.938rem;
    font-weight: 600;
}

.hero-breadcrumb-nav li.second {
    color: #ffffff;
}

/* ===== Page Title ===== */
.hero-page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===== Optional: Subtitle/Description ===== */
.hero-page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 1rem 0 0 0;
    padding: 0;
    line-height: 1.5;
    max-width: 700px;
}

/* ===== Responsive Design ===== */
@media (max-width: 991.98px) {
    .hero-breadcrumb-area {
        padding: 8rem 0 3.5rem 0;
    }

    .hero-page-title {
        font-size: 2.5rem;
    }

    .hero-page-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 767.98px) {
    .hero-breadcrumb-area {
        padding: 7rem 0 3rem 0;
    }

    .hero-breadcrumb-inner {
        text-align: center;
    }

    .hero-breadcrumb-nav {
        justify-content: center;
        margin-bottom: 1.25rem;
    }

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

    .hero-page-subtitle {
        font-size: 1rem;
        margin: 0.75rem auto 0;
    }
}

@media (max-width: 575.98px) {
    .hero-breadcrumb-area {
        padding: 6rem 0 2.5rem 0;
    }

    .hero-breadcrumb-nav {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .hero-breadcrumb-nav a,
    .hero-breadcrumb-nav li.active {
        font-size: 0.875rem;
    }

    .hero-page-title {
        font-size: 1.75rem;
    }

    .hero-page-subtitle {
        font-size: 0.938rem;
    }
}

/* ===== Alternative Farbvarianten (optional) ===== */

/* Dunkle Variante */
.hero-breadcrumb-area.hero-dark {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

/* Helle Variante */
.hero-breadcrumb-area.hero-light {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-breadcrumb-area.hero-light .hero-breadcrumb-nav a {
    color: rgba(26, 32, 44, 0.7);
}

.hero-breadcrumb-area.hero-light .hero-breadcrumb-nav a:hover,
.hero-breadcrumb-area.hero-light .hero-breadcrumb-nav li.active {
    color: #1a202c;
}

.hero-breadcrumb-area.hero-light .hero-breadcrumb-nav li:not(:last-child)::after {
    color: rgba(26, 32, 44, 0.4);
}

.hero-breadcrumb-area.hero-light .hero-page-title {
    color: #1a202c;
    text-shadow: none;
}

.hero-breadcrumb-area.hero-light .hero-page-subtitle {
    color: #4a5568;
}

/* Gradient Variante */
.hero-breadcrumb-area.hero-gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-breadcrumb-area.hero-gradient-sunset {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.hero-breadcrumb-area.hero-gradient-ocean {
    background: linear-gradient(135deg, #2e3192 0%, #1bffff 100%);
}