.hero-section {
    background-image: url('../../resources/homepage.jpg');
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    justify-content: center;
}

.content-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    /*max-width: 1400px;*/ 
    padding: 0 4rem; 
    box-sizing: border-box;
    gap: 2rem;

    align-items: center;
}

.left-column, .right-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; 
}

.left-column {
    align-items: flex-start; 
}

.right-column {
    align-items: stretch;
    flex-basis: 40%;
    
    max-height: calc(100vh - 120px); 
    overflow-y: auto; 
    padding-right: 10px; 
}

.hero-text {
    padding: 2rem 3rem;
}

.info-box {
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-text h1 {
    font-size: 5rem;
    font-weight: bold;
    margin: 0; 
    color: white;
}

#status-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#status-box p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

#status-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #888; 
}

#status-dot.online {
    background-color: #2ecc71; 
    animation: pulse 1.5s infinite;
}

#status-dot.offline {
    background-color: #e74c3c; 
}

#status-dot.unknown {
    background-color: #e4e73c;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.command-box h3 {
    margin-top: 0;
    color: #eee;
}

.command-box p {
    margin-bottom: 0;
    line-height: 1.6;
    color: #ccc;
}

@media (max-width: 1024px) {

    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-top: 150px;
        padding-bottom: 2rem;
    }

    .content-container {
        flex-direction: column;
        padding: 0 1rem; 
        gap: 1.5rem; 
    }

    .left-column {
        align-items: center;
        text-align: center;
    }

    .right-column {
        max-height: none;
        overflow-y: visible;
        padding-right: 0; 
    }

    .right-column::-webkit-scrollbar {
        display: none;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }
}
