:root {
    --gold: #c5a059;
    --dark-bg: #0a0a0a;
    --darker-bg: #121212;
    --text-light: #e0e0e0;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, .section-title {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-weight: 700;
}

.hero-section {
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1514320298574-2c9d628737ed?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid var(--gold);
}

.bg-darker { background-color: var(--darker-bg); }
.bg-black { background-color: #000; }

.section-title {
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.profile-img {
    border: 1px solid var(--gold);
    padding: 10px;
    filter: grayscale(20%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.table-dark {
    --bs-table-bg: transparent;
    border-color: #333;
}

.gold-text { color: var(--gold); }
.italic { font-style: italic; }

.video-card {
    background: #1a1a1a;
    padding: 10px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.video-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.btn-outline-gold {
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 0;
    padding: 12px 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: #000;
}

footer {
    border-top: 1px solid #222;
}

/* Placeholders */
::-webkit-input-placeholder { color: #ffffff !important; opacity: 1 !important; }
::-moz-placeholder { color: #ffffff !important; opacity: 1 !important; }
:-ms-input-placeholder { color: #ffffff !important; opacity: 1 !important; }
::placeholder { color: #ffffff !important; opacity: 1 !important; }

.form-control {
    color: white !important;
    padding: 12px !important;
}

.text-muted, .text-secondary {
    color: #8a8a8a !important;
}

.italic, .venue-text {
    color: #a68b54 !important;
    font-style: italic;
}

.border-secondary {
    border-color: #222 !important;
}

.photo-credit {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    pointer-events: none;
}

/* Table styling */
.table thead th {
    background-color: #c5a059 !important;
    color: #000000 !important;
    border-color: #a6854a !important;
    vertical-align: middle;
    padding: 12px 8px;
}

.table tbody td {
    border-color: #333 !important;
}

/* --- DEN ULTIMATIVE FIX TIL DINE LINKS --- */

/* Vi fanger alle tilstande: link, visited, hover, active */
a.admin-footer-link, 
a.admin-footer-link:link, 
a.admin-footer-link:visited {
    color: #b0b0b0 !important; /* Tvinger den lysegrå */
    text-decoration: none !important;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

a.admin-footer-link:hover {
    color: #c5a059 !important; /* Tvinger guld ved hover */
    text-decoration: underline !important;
}

/* Hvis du bruger footer-nav div'en */
.footer-nav a, 
.footer-nav a:link, 
.footer-nav a:visited {
    color: #b0b0b0 !important;
    text-decoration: none !important;
}

.footer-nav a:hover {
    color: #c5a059 !important;
}