@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #151617;
    color: white;    
    font-family: 'Noto Sans', sans-serif;
}

/* navbar */
.navbar {
    background-color: #000000;
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 25px;
    border-bottom: 1px solid #2a2a2a;
    position: fixed; 
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    margin-right: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    width: 100%;
    align-items: center;
}

.nav-links li a {
    color: #b0b0b0;
    text-decoration: none;
    padding: 0 18px;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links li a:hover { color: #ffffff; }

.login-link { margin-left: auto; }

/* dropdown menu for the navbar */
.dropdown { position: relative; }
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 200px;
    border-radius: 4px;
    top: 100%;
}
.dropdown-content a {
    color: #333 !important;
    padding: 12px 20px !important;
    display: block !important;
}
.dropdown:hover .dropdown-content { display: block; }

/* hero image */
.hero-section {
    background-image: url('hero-house.png');
    background-size: cover;
    background-position: center;
    height: 80vh; 
    margin-top: 70px; 
    position: relative;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5); 
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    padding: 20px;
}

.hero-logo {
    max-width: 450px;
    margin-bottom: 20px;
}

h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-status {
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 1.1rem;
    margin-bottom: 30px;
    border-left: 4px solid #5865F2; 
}

.archive-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    opacity: 0.8;
}

.archive-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* fix for mobile */
#nav-check, .nav-btn { display: none; }

@media (max-width: 768px) {
    .nav-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        cursor: pointer;
        margin-left: auto;
    }
    .nav-btn span { height: 3px; width: 100%; background-color: white; }
    .nav-links {
        position: absolute;
        display: block;
        width: 100%;
        background-color: #000;
        height: 0px;
        transition: all 0.3s ease;
        overflow: hidden;
        top: 70px;
        left: 0;
    }
    #nav-check:checked ~ .nav-links { height: 100vh; }
    .nav-links li a { padding: 20px; font-size: 18px; border-bottom: 1px solid #1a1a1a; }
    .login-link { margin-left: 0; }
    
    h1 { font-size: 2.5rem; }
}

/* footer */
.footer {
    background-color: #000000; 
    color: #ffffff;
    padding: 60px 20px 20px 20px;
    border-top: 1px solid #2a2a2a;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px; 
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #888; 
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
}

.footer-bottom p {
    font-size: 13px;
    color: #666;
}

.footer-bottom a {
    color: #888;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* mobile fix 2 */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-col {
        margin-bottom: 20px;
    }
}



/* content stuff */
.page-wrapper {
    padding: 120px 20px 60px 20px; 
    display: flex;
    justify-content: center;
    min-height: 80vh;
}

.content-card {
    background-color: #0b0b0b; 
    color: #333; 
    width: 100%;
    max-width: 1000px;
    padding: 40px;
    border-left: 8px solid #5865F2; 
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #FFFFFF;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.command-item {
    margin-bottom: 35px;
}

.command-item h3 {
    font-size: 1.4rem;
    color: #FFFFFF;
    margin-bottom: 5px;
    font-family: monospace; 

.command-item .parameter {
    color: #666;
    font-weight: normal;
}

.command-item .description {
    font-size: 1rem;
    margin-bottom: 2px;
}

.command-item .alias {
    font-size: 0.9rem;
    color: #555;
}

.command-item .alias span {
    font-weight: bold;
    color: #333;
}

/* fix for mobile 3 */
@media (max-width: 768px) {
    .content-card {
        padding: 20px;
        border-left-width: 5px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
}