:root {
    --bg-primary: #0B0C10;
    --bg-secondary: #1A1A2E;
    --bg-card: #1F2833;
    --accent-gold: #C5A059;
    --accent-gold-hover: #d4b576;
    --text-primary: #FFFFFF;
    --text-secondary: #C1C1C1;
    --text-muted: #888;
    --border: #333;
    --green: #4caf50;
    --red: #e57373;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main { flex: 1; }

a { color: var(--accent-gold); text-decoration: none; }
a:hover { color: var(--accent-gold-hover); }

img { max-width: 100%; height: auto; }

/* ─── Navbar ─── */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 65px;
    background: rgba(11, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-primary);
}

.nav-logo img {
    height: 32px;
    width: auto;
}

.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    text-decoration: none;
}
.nav-links a:hover { color: var(--accent-gold); }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Mobile Menu ─── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 999;
    flex-direction: column;
    padding: 30px 24px;
    gap: 20px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
}

/* ─── Footer ─── */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 40px 24px 0;
    margin-top: 60px;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.footer-brand img { height: 28px; }
.footer-desc { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; margin-bottom: 16px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a img { width: 20px; height: 20px; opacity: 0.7; transition: opacity 0.2s; }
.footer-social a:hover img { opacity: 1; }
.footer h4 { color: var(--accent-gold); font-family: 'Oswald', sans-serif; font-size: 0.95rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-secondary); font-size: 0.85rem; text-decoration: none; }
.footer-links a:hover { color: var(--accent-gold); }
.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    padding: 20px;
    margin-top: 30px;
    border-top: 1px solid var(--border);
}

/* ─── Buttons ─── */
.btn { display: inline-block; padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; border: none; cursor: pointer; text-decoration: none; transition: all 0.2s; font-family: 'Inter', sans-serif; }
.btn-gold { background: var(--accent-gold); color: #000; }
.btn-gold:hover { background: var(--accent-gold-hover); color: #000; }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text-primary); }
.btn-outline:hover { border-color: var(--accent-gold); }
.btn-danger { background: transparent; border: 1px solid rgba(244,67,54,0.5); color: var(--red); }

/* ─── Cards ─── */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 28px; margin-bottom: 20px; }
.card h3 { font-family: 'Oswald', sans-serif; color: var(--accent-gold); margin-bottom: 15px; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }

/* ─── Pagination ─── */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 30px 0; }
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
}
.pagination a:hover { border-color: var(--accent-gold); color: var(--accent-gold); }
.pagination .active { background: var(--accent-gold); color: #000; border-color: var(--accent-gold); }
.pagination .disabled { opacity: 0.3; pointer-events: none; }

/* ─── Content spacer for fixed navbar ─── */
.page-content { padding-top: 65px; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
