/* ═══════════════════════════════════════════════════════════════════════════
   pv-common.css — Shared theme, navbar, and footer styles for PageantVision
   Load AFTER Bootstrap, BEFORE page-specific inline <style> blocks.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Base / Theme ──────────────────────────────────────────────────────── */
body {
    background-color: #121212;
    color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* ── Navbar ────────────────────────────────────────────────────────────── */
.navbar {
    background-color: #1c1c1c;
    min-height: 100px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.logo-combo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-combo img {
    height: 70px;
    padding: 0.5rem;
    object-fit: contain;
}

/* ── Button overrides ──────────────────────────────────────────────────── */
.btn-outline-light {
    border-color: #ccc;
    color: #fff;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* ── Footer ────────────────────────────────────────────────────────────── */
footer {
    background: #0f0f14;
    color: #aaa;
    padding: 30px 0;
}

.footer-section {
    background-color: #0f0f14;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

a.footer-icon {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

a.footer-icon:hover {
    color: #fff;
}

.footer-logo {
    max-height: 40px;
    width: auto;
}
