/* Custom Badge Styles */

/* Basis Badge */
.std-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(12, 192, 223, 0.1);
    border: 1px solid rgba(12, 192, 223, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.std-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 192, 223, 0.15);
}

.std-badge i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.std-badge-content {
    display: flex;
    flex-direction: column;
}

.std-badge-title {
    color: var(--color-secondary);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2;
}

.std-badge .std-tech-name {
    color: #000000;
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 0.1rem;
}

/* Primär Badge */
.std-badge-primary {
    background-color: var(--color-primary);
    color: white;
}

.std-badge-primary i,
.std-badge-primary .std-badge-title,
.std-badge-primary .std-tech-name {
    color: white;
}

/* Sekundär Badge */
.std-badge-secondary {
    background-color: var(--color-secondary);
    color: white;
}

.std-badge-secondary i,
.std-badge-secondary .std-badge-title,
.std-badge-secondary .std-tech-name {
    color: white;
}

/* Helles Badge */
.std-badge-light {
    background-color: rgba(248, 249, 250, 0.8);
    color: var(--color-text);
    border: 1px solid var(--color-primary);
}

/* Badge Container */
.std-badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Badge Demo Container */
.std-badge-demo {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Info Box */
.std-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: white;
    border: 1px solid rgba(12, 192, 223, 0.1);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.std-info-box:hover {
    transform: translateY(-2px);
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(12, 192, 223, 0.15);
}

/* Icon Container */
.std-info-box i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.std-info-box:hover i {
    background-color: var(--color-secondary);
}

.std-info-box-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.std-info-box-title {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 1rem;
}

.std-info-box .std-tech-name {
    color: var(--color-text);
    opacity: 0.7;
    font-size: 0.75rem;
} 