/* ========================================
   FEATURED WEBDESIGN BANNER COMPONENT
   Goldener Banner mit Schimmer-Effekt
   Copy & Paste Ready für alle Projekte
   ======================================== */

.featured-banner {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    margin: 10px 0;
    background: linear-gradient(
        135deg,
        #FFD700 0%,
        #FFA500 25%,
        #FFD700 50%,
        #B8860B 75%,
        #FFD700 100%
    );
    border-radius: 8px;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.featured-banner:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.6),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

.featured-banner-text {
    position: relative;
    z-index: 2;
    color: #1a1a1a;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-banner-icon {
    font-size: 16px;
    color: #8B4513;
}

/* Schimmer-Effekt Animation */
.featured-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    z-index: 1;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* === GRÖSSEN VARIANTEN === */
.featured-banner-small {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 6px;
}

.featured-banner-small .featured-banner-text {
    font-size: 12px;
}

.featured-banner-small .featured-banner-icon {
    font-size: 14px;
}

.featured-banner-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 12px;
}

.featured-banner-large .featured-banner-text {
    font-size: 16px;
}

.featured-banner-large .featured-banner-icon {
    font-size: 20px;
}

/* === ANIMATIONS VARIANTEN === */
.featured-banner-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 
            0 4px 15px rgba(255, 215, 0, 0.4),
            0 2px 8px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 6px 20px rgba(255, 215, 0, 0.6),
            0 3px 10px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 
            0 4px 15px rgba(255, 215, 0, 0.4),
            0 2px 8px rgba(0, 0, 0, 0.2);
    }
}

.featured-banner-floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.featured-banner-glow {
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.3),
        0 0 60px rgba(255, 215, 0, 0.1);
}

.featured-banner-glow:hover {
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.7),
        0 0 60px rgba(255, 215, 0, 0.5),
        0 0 90px rgba(255, 215, 0, 0.3);
}

/* === FARB VARIANTEN === */
.featured-banner-dark {
    background: linear-gradient(
        135deg,
        #B8860B 0%,
        #DAA520 25%,
        #FFD700 50%,
        #DAA520 75%,
        #B8860B 100%
    );
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.featured-banner-dark .featured-banner-text {
    color: #000;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.3);
}

.featured-banner-success {
    background: linear-gradient(
        135deg,
        #32CD32 0%,
        #FFD700 25%,
        #32CD32 50%,
        #228B22 75%,
        #FFD700 100%
    );
}

.featured-banner-premium {
    background: linear-gradient(
        135deg,
        #E5E4E2 0%,
        #FFD700 25%,
        #C0C0C0 50%,
        #FFD700 75%,
        #E5E4E2 100%
    );
    border: 2px solid rgba(192, 192, 192, 0.5);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .featured-banner { padding: 10px 20px; font-size: 12px; }
    .featured-banner-large { padding: 14px 28px; font-size: 14px; }
    .featured-banner-small { padding: 6px 12px; font-size: 10px; }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    .featured-banner::before,
    .featured-banner-pulse,
    .featured-banner-floating {
        animation: none;
    }
    .featured-banner {
        transition: none;
    }
}

@media (prefers-contrast: high) {
    .featured-banner {
        border: 3px solid #000;
        background: #FFD700;
    }
    .featured-banner-text {
        color: #000;
        text-shadow: none;
        font-weight: 900;
    }
}

@media print {
    .featured-banner {
        background: #FFD700 !important;
        box-shadow: none !important;
        border: 1px solid #B8860B !important;
    }
    .featured-banner::before {
        display: none !important;
    }
}
