/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', serif; /* Replace with your custom fonts */
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

================
FILE: css/navigation.css
================

/* Vintage Newspaper Navigation */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #000;
}

.nav-header {
    text-align: center;
    padding: 8px 0;
    border-bottom: 1px solid #000;
    background: #fff;
}

.nav-title {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: #fff;
}

.nav-item {
    display: block;
    padding: 12px 24px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border-right: 1px solid #ddd;
    transition: background-color 0.2s ease;
}

.nav-item:last-child {
    border-right: none;
}

.nav-item:hover {
    background-color: #f5f5f5;
}

.nav-item.active {
    background-color: #000;
    color: #fff;
}
