/* LOGO STYLING */
.hero-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: -100px; /* Zieht den Namen noch weiter nach oben */
    margin-bottom: 60px; /* Vergrößert den Abstand zum Haupttext "Buchhaltung für..." deutlich */
}

.hero-brand-name {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 300; /* Sehr leichte, elegante Schrift */
    letter-spacing: 0.05em;
    color: var(--text-primary);
    text-align: center;
    opacity: 0.9;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    max-width: 140px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 40px rgba(212, 175, 55, 0.15);
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
