.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-secondary);
}

.btn-primary:hover {
    box-shadow: 0 5px 15px rgba(208, 197, 126, 0.3);
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 400%;
    top: 50%;
    left: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: width 0.6s ease;
    z-index: -1;
}

.btn:hover::after {
    width: 120%;
}


.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.2;
}

.section-title span {
    color: var (--accent-color);
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: 5px;
    left: 0;
    background-color: rgba(208, 197, 126, 0.15);
    z-index: -1;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 20px;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: inline-block;
}


@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-description {
        font-size: 1rem;
        color: var(--text-secondary);
        margin: 0 auto 20px;
        max-width: 600px;
    }

    .section-label {
        font-size: 0.8rem;
    }
    
}






/* Allgemeine Stile für Lade-Indikatoren */
.loading-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--text-secondary);
}

.loading-section i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.section-error {
    text-align: center;
    padding: 40px;
    background-color: rgba(255, 0, 0, 0.05);
    border-radius: 8px;
    margin: 20px;
}

.section-error i {
    font-size: 3rem;
    color: #ff5252;
    margin-bottom: 1rem;
}

.section-error button {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.section-error button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(208, 197, 126, 0.3);
}
