@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@700&display=swap');

/* General styles */
body {
    --bs-body-bg: #1c1c1c;
    margin: 0;
    padding: 0;
    background-color: #1c1c1c;
    color: #f0f0f0;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s, color 0.3s;
    min-height: 100vh;
    overflow-x: hidden;/
}

header {
    background-color: #000;
    color: #ffffff;
    padding: 1rem;
    text-align: left;
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

header h1 {
    font-size: 1.5rem;
    margin: 0;
    color: #ffffff;
    font-family: 'Roboto Mono', monospace;
}

.menu-btn {
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #f0f0f0;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: 20px;
}

.hospital-title {
    font-size: 2.5rem;
    color: #00aaff;
    font-family: 'Roboto Mono', monospace;
    margin-bottom: 15px;
    text-shadow: 0px 0px 15px #00aaff;
    text-align: center;
}

/* Navbar Styles */
.navbar {
    background-color: #000; /* Ensure background is black */
}

/* Left-side text customization */
.nav-link.brand-text {
    font-size: 1.5rem; /* Increase font size */
    font-weight: bold; /* Make the text bold */
    font-family: 'Roboto Mono', monospace;
    color: #ffffff; /* Optional: Make text a vibrant blue */
    letter-spacing: 1px; /* Add spacing between letters */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* Subtle shadow for depth */
}

.nav-link.brand-text:hover {
    color: #00aaff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); /* Enhanced shadow on hover */
}

/* Logo Center Alignment */
.navbar-brand img {
    max-height: 64px; /* Ensure consistent logo size */
}

/* Impressum Link (Optional Styling) */
.nav-link {
    font-size: 1rem; /* Standard font size for links */
    color: #ffffff; /* Default white color */
}

.nav-link:hover {
    color: #00aaff; /* Highlight on hover */
}


/* Video background */
#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.1;
}

/* Main content layout */
.main-content {
    display: flex;
    flex-direction: column; /* Stack sections vertically on smaller screens */
    align-items: center;
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (min-width: 600px) {
    .main-content {
        flex-direction: row;
        justify-content: space-between;
    }
    .left-section, .right-section {
        width: 45%; /* Restore width for larger screens */
    }
    .button-container {
        flex-direction: row; /* Horizontal button layout on larger screens */
    }
}


/* Button */
.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.button-container button {
    flex: 1;
}

/* Blinking red for "SYSTEM COMPROMISED!" */
.timer.compromised {
    color: #ff0000;
    animation: blink 1s infinite;
    text-shadow: 0px 0px 15px #ff0000;
}

/* Green color for the hospital title when compromised */
.hospital-title.compromised {
    color: #00ff00;
    text-shadow: 0px 0px 15px #00ff00;
}

/* Blinking animation */
@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}
