/* ========================================
   CONSTRUCTION BANNER - Im Aufbau Hinweis
   ======================================== */

   #construction-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900; /* Unter dem Header (1000) */
    background: linear-gradient(135deg, #8b1a1a 0%, #6b1414 100%);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.construction-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
}

.construction-icon {
    font-size: 20px;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.construction-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
}

.construction-text strong {
    font-weight: 800;
    color: #ffd700; /* Goldgelb für besseren Kontrast auf Rot */
}

.construction-cta {
    background: #ffffff;
    color: #8b1a1a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.construction-cta:hover {
    background: #a8d530;
    transform: scale(1.05);
    color: #0a0a0a;
}

/* Body padding damit Banner Platz hat */
body.has-construction-banner {
    padding-top: 56px; /* Höhe des Banners auf Desktop */
}

/* Header bleibt sticky, normale Position */
body.has-construction-banner .site-header {
    /* Kein margin, sitzt direkt nach dem Body-Padding */
}

/* Wetter Widget Anpassung falls vorhanden */
body.has-construction-banner #weather-widget {
    top: 110px; /* Banner (42px) + Header (110px) */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .construction-icon {
        display: none; /* Icon auf Mobile ausblenden */
    }
    
    .construction-inner {
        flex-direction: column;
        gap: 10px;
        padding: 12px 15px;
    }

    .construction-text {
        font-size: 11px;
        line-height: 1.5;
    }

    .construction-cta {
        font-size: 11px;
        padding: 6px 14px;
    }

    body.has-construction-banner {
        padding-top: 80px; /* Höhe des mehrzeiligen Banners auf Mobile */
    }

    body.has-construction-banner .site-header {
        /* Kein margin, Header sitzt direkt nach dem Body-Padding */
    }

    body.has-construction-banner #weather-widget {
        top: 100px; /* Banner (90px) + Header (100px) */
    }
}

@media (max-width: 640px) {
    .construction-text {
        font-size: 10.5px;
    }
}

@media (max-width: 480px) {
    .construction-text {
        font-size: 10px;
    }
    
    .construction-cta {
        font-size: 10px;
        padding: 5px 12px;
    }
}

@media (max-width: 380px) {
    .construction-text {
        font-size: 9.5px;
    }
}