/* Bienenfakten-Sektion */
.bee-facts-section {
    position: relative;
    padding: 60px 20px;
    margin: 3rem 0;
    overflow: hidden;
    z-index: 1;
    background-color: transparent;
}

/* Fliegende Bienen */
.flying-bee {
    position: absolute;
    font-size: 2rem;
    z-index: 1;
    pointer-events: none;
}

.flying-bee:nth-child(1) {
    top: 10%;
    left: 10%;
    animation: floatBee 15s infinite ease-in-out;
}

.flying-bee:nth-child(2) {
    bottom: 20%;
    right: 15%;
    animation: floatBee 18s infinite ease-in-out 2s;
}

/* Titel-Container */
.bee-facts-title-container {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 3px solid var(--gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
    position: relative;
    z-index: 2;
}

.bee-facts-title-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    border-radius: 17px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
    transition: all 0.3s ease;
}

.bee-facts-title-container:hover::before {
    opacity: 0.7;
    filter: blur(12px);
}

/* Titel */
.bee-facts-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    position: relative;
    z-index: 2;
    margin: 0;
}

.bee-facts-title::after {
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 15px auto 0;
}

/* Bienen-Dekoration */
.bee-decoration {
    position: absolute;
    font-size: 24px;
    animation: floatBee 15s ease-in-out infinite;
    opacity: 0.3;
    z-index: 0;
    text-shadow: 0 0 5px var(--gold);
    color: var(--gold);
}

.bee-decoration:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.bee-decoration:nth-child(2) {
    bottom: 20%;
    right: 15%;
    animation-delay: 3s;
}

.bee-decoration:nth-child(3) {
    top: 70%;
    left: 15%;
    animation-delay: 6s;
}

.bee-decoration:nth-child(4) {
    top: 30%;
    right: 10%;
    animation-delay: 9s;
}

@keyframes floatBee {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scaleX(-1);
    }
    25% {
        transform: translateY(-20px) translateX(20px) rotate(5deg) scaleX(-1);
    }
    50% {
        transform: translateY(0) translateX(40px) rotate(0deg) scaleX(-1);
    }
    75% {
        transform: translateY(20px) translateX(20px) rotate(-5deg) scaleX(-1);
    }
}

/* Karussell-Container */
.bee-facts-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 60px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 3px solid var(--gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
    z-index: 2;
}

.bee-facts-carousel::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    border-radius: 17px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
    transition: all 0.3s ease;
}

.bee-facts-carousel:hover::before {
    opacity: 0.7;
    filter: blur(12px);
}

/* Slider */
.bee-facts-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Fakten-Karten */
.bee-fact-card {
    min-width: 100%;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

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

/* Icon für Fakten */
.bee-fact-icon {
    font-size: 42px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

/* Text für Fakten */
.bee-fact-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--light-gold);
    max-width: 90%;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navigation buttons */
.bee-facts-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gold);
    color: var(--black);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
    border: 2px solid var(--gold);
}

.bee-facts-nav:hover {
    background-color: transparent;
    color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.bee-facts-prev {
    left: 15px;
}

.bee-facts-next {
    right: 15px;
}

/* Positions-Anzeige */
.bee-facts-position {
    text-align: center;
    margin-top: 15px;
    padding: 5px 10px;
    font-size: 0.9rem;
    color: var(--gold);
    font-style: italic;
    opacity: 0.8;
}

/* Responsivität */
@media (max-width: 768px) {
    .bee-facts-carousel {
        padding: 15px 40px;
    }
    
    .bee-fact-text {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .bee-facts-nav {
        width: 35px;
        height: 35px;
    }
    
    .bee-facts-title {
        font-size: 2rem;
    }
}
