.top-bar {
    background: var(--accent);
    color: white;
    font-size: 14px;
    padding: 12px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
}

header {
    background: var(--surface);
    padding: 40px 0;
    border-bottom: 4px solid var(--accent);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo-emblem {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 42px;
    border: 3px solid var(--accent-gold);
}

.logo-text h1 {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--accent);
    letter-spacing: 4px;
}

nav {
    background: var(--accent);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
}

nav li a {
    display: block;
    padding: 20px 35px;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s;
    white-space: nowrap;
}

nav li a:hover,
nav li a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
}

footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 60px 0;
    margin-top: 100px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    font-size: 15px;
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-info-item i {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
}
