/* 
 * nMon Public Page Header Styling
 * Modern header styling for the public status page
 */

.public-page-header {
    background: linear-gradient(135deg, #3c8dbc 0%, #2c3e50 100%);
    color: #fff;
    padding: 40px 0;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.public-page-header:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.public-page-header:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.public-page-header:after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.public-page-header .container {
    position: relative;
    z-index: 2;
}

.public-page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    border: none !important;
    color: #fff !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    animation: fadeInDown 0.8s ease-in-out;
}

.public-page-header p {
    font-size: 18px;
    margin-top: 15px;
    opacity: 0.9;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    font-weight: 300;
    letter-spacing: 0.3px;
    animation: fadeInUp 0.8s ease-in-out;
}

/* Animation keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header content is now centered, status summary has been removed */

@media (max-width: 767px) {
    .public-page-header {
        padding: 30px 0;
        text-align: center;
    }
    
    .public-page-header h1 {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .public-page-header p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .public-page-header:before,
    .public-page-header:after {
        opacity: 0.5;
    }
}