/* 
   NOVARIS PREMIUM REFINEMENT V1 
   Target: 'Atombombe geil' Look (Black/Gold High-End)
*/

:root {
    --premium-gold: #D4AF37;
    --premium-gold-light: #F5E0A3;
    --premium-gold-dark: #A67C00;
    --premium-black: #0a0a0a;
}

/* 1. Gold-Gradient für Haupt-Überschriften */
.premium-gradient-text {
    background: linear-gradient(to right, var(--premium-gold-dark), var(--premium-gold-light), var(--premium-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* 2. WhatsApp Premium Glow & Position */
#novaris-global-whatsapp {
    background: var(--premium-gold) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4) !important;
    animation: premium-pulse 3s infinite ease-in-out !important;
    transition: all 0.3s ease !important;
}

#novaris-global-whatsapp:hover {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.7) !important;
}

@keyframes premium-pulse {
    0% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.6); }
    100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
}

/* 3. Globaler Header-Abstand Fix für Unterseiten */
main, section:first-of-type {
    padding-top: 80px !important; /* Verhindert 'abgeschnittenes' Aussehen */
}

.home-hero-section, .hero-section {
    padding-top: 0 !important; /* Startseite bleibt bündig */
}

/* 4. Jobs-Seite: N-Monogramm Entfernung & Bewerbungs-Kachel */
.jobs-n-monogram, [class*="Jobs_monogram"] {
    display: none !important;
}

.premium-job-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
}

.premium-job-form input, .premium-job-form textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.8rem;
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 6px;
    transition: border-color 0.3s;
}

.premium-job-form input:focus {
    border-color: var(--premium-gold);
    outline: none;
}

.premium-job-button {
    background: var(--premium-gold);
    color: black;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.premium-job-button:hover {
    background: var(--premium-gold-light);
    transform: translateY(-2px);
}

/* 5. Service-Cards Hover Veredelung */
.service-card-premium {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.5) !important;
}

/* 6. Goldene Linien & Trenner */
.premium-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--premium-gold), transparent);
    margin: 2rem 0;
    opacity: 0.5;
}
