/* Basic CSS reset and styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent the entire document from scrolling */
html, body {
    overflow: hidden;
}

@font-face {
    font-family: 'DepartureMono';
    src: url('../fonts/DepartureMono-Regular.woff2') format('woff2'),
         url('../fonts/DepartureMono-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'DepartureMono', monospace;
    line-height: 1.6;
    background-color: #00242A;
    color: #e0e0e0;
}

/* Update the header positioning in common.css */
header {
    position: fixed;
    top: 0;
    left: 12.5rem; /* Match the navigation width exactly */
    right: 0;
    background-color: #00242A;
    padding: 2rem;
    text-align: center;
    color: #F0DE1E;
    z-index: 1001;
}


/* Responsive styles */
@media screen and (max-width: 768px) {
    body.mobile-menu-open {
        overflow: hidden;
    }
    
    header {
        left: 0;
        padding: 1rem;
        text-align: center;
    }
    
    /* When mobile menu is open, dim the background */
    body.mobile-menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
}

@media screen and (max-width: 480px) {
    header {
        padding: 0.75rem;
    }
    
    header h1 {
        font-size: 1.25rem;
    }
} 