/* ========================================
   MINIMAL STICKY WEATHER INFO BAR
   ======================================== */

   #weather-widget {
    position: fixed;
    top: 110px; /* Headerhöhe */
    width: 100%;
    z-index: 90;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
}

#weather-widget.weather-visible {
    transform: translateY(0);
    opacity: 1;
}

.weather-bar {
    background: #121212;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.weather-inner {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Text */
#weather-text {
    color: rgba(255,255,255,0.55);
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Dezenter Link */
.weather-link {
    color: rgba(168,213,48,0.7);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.weather-link:hover {
    color: #a8d530;
}

/* Body Abstand wenn aktiv */
body.has-weather-bar {
    padding-top: 0; /* Header (80px) + Bar (36px) */
}

/* Mobile */
@media (max-width: 768px) {

    #weather-widget {
        top: 100px; /* falls mobiler Header kleiner */
    }

    .weather-inner {
        padding: 0 14px;
        height: 34px;
    }

    #weather-text,
    .weather-link {
        font-size: 11px;
    }

    body.has-weather-bar {
        padding-top: 0;
    }
}
