/* ============================= */
/* 🔹 HEADER STYLING */
/* ============================= */
.page-header {
    position: relative;
    height: 650px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* ✅ Transparent Banner Image */
.page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../assets/images/custom-header.jpg') no-repeat center top / cover;
    opacity: 0.5;
    z-index: -1;
}

/* ✅ Floating Title */
.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 6px 6px 12px rgba(0, 0, 0, 0.75);
}

/* ✅ Floating Banner Text */
.floating-banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
    z-index: 2;
    white-space: nowrap; /* ✅ Prevents text from breaking */
    
    /* ✅ Floating Animation */
    animation: floating 4s ease-in-out infinite;
}

/* ✅ Keyframe Animation for Floating Effect */
@keyframes floating {
    0% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-15px); } /* Moves up */
    100% { transform: translate(-50%, -50%) translateY(0px); } /* Moves back */
}

    body {
        background-color: #111;
        color: #eee;
        font-family: 'Arial', sans-serif;
    }
    .server-info-container {
        max-width: 900px;
        margin: 50px auto;
        margin-bottom: 190px;
        margin-top: 40px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 10px;
        text-align: center;
    }
    h1 {
        font-size: 36px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }
    .server-rates {
        text-align: left;
        font-size: 20px;
        margin: 20px 0;
    }
    .vision-section {
        margin-top: 30px;
        font-size: 18px;
    }
    .back-home {
        margin-top: 20px;
        display: inline-block;
        padding: 10px 20px;
        background: #ff4500;
        color: white;
        text-decoration: none;
        font-weight: bold;
        border-radius: 5px;
    }
    
    /* ============================= */
/* 🔹 FOOTER POSITIONING & SPACING */
/* ============================= */
footer {
    padding: 0px 500px;  /* ✅ Adds top & bottom padding */
    text-align: center;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    font-size: 1rem;
    border-top: 0px solid rgba(255, 255, 255, 0.3);
}
