/* ==========================================================================
   Main.css - Deel 1
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --nieuw-goud: #D4AF37;
    --buiten-zwart: #0a0a0a;
    --midden-licht: #3a3a3a;
}

html { scroll-behavior: smooth; }

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--nieuw-goud);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background-color: var(--buiten-zwart);
}

body::before, body::after {
    content: ""; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -2; background-attachment: fixed;
}

body::before {
    background: radial-gradient(circle, var(--midden-licht) 0%, var(--buiten-zwart) 100%);
    animation: gradientAdemhaling 10s ease-in-out infinite alternate;
}

body::after {
    background: radial-gradient(circle, var(--buiten-zwart) 0%, var(--buiten-zwart) 100%);
    animation: gradientAdemhaling 10s ease-in-out infinite alternate-reverse;
    z-index: -1;
}

@keyframes gradientAdemhaling { 0% { opacity: 1; } 100% { opacity: 0; } }

a { color: var(--nieuw-goud); text-decoration: none; }

.navbar { width: 100%; padding: 20px; display: flex; justify-content: center; align-items: center; position: relative; z-index: 100; }
.nav-menu { display: flex; list-style: none; }
.nav-item { position: relative; margin-left: 20px; }
.nav-link { padding: 10px 15px; transition: color 0.3s ease; }
.nav-link:hover { color: #fff; }

.hamburger { display: none; cursor: pointer; flex-direction: column; justify-content: space-between; width: 30px; height: 21px; }
.hamburger .bar { height: 3px; width: 100%; background-color: var(--nieuw-goud); border-radius: 10px; transition: all 0.3s ease; }

.content-overlay { padding-bottom: 120px; }   

.fixed-footer {
    position: fixed; bottom: 0; left: 0; width: 100%; background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(5px); border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--nieuw-goud); text-align: center; padding: 15px 10px; font-size: 0.85rem;
    line-height: 1.5; z-index: 2000;
}

@media screen and (max-width: 768px) {
    .navbar { justify-content: flex-start; }
    .hamburger { display: flex; z-index: 101; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
    .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background-color: rgba(10, 10, 10, 0.98); border-bottom: 1px solid var(--nieuw-goud); padding: 20px 0; text-align: center; }
    .nav-menu.active { display: flex; }
    .nav-item { margin: 10px 0; width: 100%; }
    .nav-link { display: block; padding: 12px 0; width: 100%; font-size: 1.1rem; }
    .fixed-footer { font-size: 0.75rem; padding: 10px; }
}

main.container { width: 100%; display: block; margin: 0 auto; padding: 0 15px; }

.bg-image-container { position: relative; width: 100%; max-width: 800px; margin: 40px auto; padding: 20px; min-height: 500px; display: flex; flex-direction: column; align-items: center; justify-content: center; }

.bg-image-container .background-photo {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%;
    max-width: 500px; height: auto; z-index: 1; pointer-events: none; opacity: 0.1;
}

.content-overlay { position: relative; z-index: 2; text-align: center; padding: 20px; max-width: 650px; }
.content-overlay p {
    font-size: 1.15rem; line-height: 1.8; margin-bottom: 20px; color: #C5A059;
    text-shadow: -1px -1px 0px rgba(10, 10, 10, 0.9), 1px -1px 0px rgba(10, 10, 10, 0.9), -1px 1px 0px rgba(10, 10, 10, 0.9), 1px 1px 0px rgba(10, 10, 10, 0.9), 0px 3px 8px rgba(10, 10, 10, 1.0);
    transition: color 0.3s ease;
}

/* ==========================================================================
   Main.css - Deel 2
   ========================================================================== */

.recording-content::after {
    content: "";
    display: table;
    clear: both;
}

.sticky-artikel-menu {
    position: -webkit-sticky;
    position: sticky;
    top: 0px; 
    background: rgba(17, 17, 17, 0.95);
    border-bottom: 2px solid #d4af37;
    z-index: 99;
    padding: 10px 0;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.sticky-artikel-menu ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.sticky-artikel-menu a {
    color: #ccc;
    text-decoration: none;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: bold;
    transition: 0.3s;
}

.sticky-artikel-menu a:hover {
    background: #d4af37;
    color: #000;
}

.artikel-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    color: #fff;
}

.artikel-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100%;
    margin-bottom: 50px;
    padding: 20px;
}

.artikel-info { flex: 2; }
.artikel-media { flex: 1; display: flex; justify-content: center; }
.artikel-media img { max-width: 350px; width: 100%; height: auto; border-radius: 6px; box-shadow: 0 4px 15px rgba(0,0,0,0.5); }

.artikel-info h2 { margin-top: 0; }
.artikel-info .prijs { font-size: 1.2rem; font-weight: bold; color: #d4af37; }
.artikel-info .bestel-knop { display: inline-block; padding: 10px 20px; background: #d4af37; color: #000; text-decoration: none; font-weight: bold; border-radius: 4px; margin-top: 15px; transition: 0.3s; }
.artikel-info .bestel-knop:hover { background: #fff; }

#artikel-2 { text-align: center; }

#artikel-3 .artikel-item-placeholder {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.referentie-rij {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 20px;
    align-items: center;
    width: 100%;
    max-width: 700px;
    background: rgba(255,255,255,0.05);
    padding: 10px;
}
.col-2 { white-space: nowrap; font-weight: bold; overflow: hidden; text-overflow: ellipsis; }

.band-img { width: 50px; height: 50px; object-fit: cover; border-radius: 4px; display: block; }

.about-img-left {
    float: left;
    margin: 0 20px 15px 0;
    max-width: 250px;
    width: 100%;
    height: auto;
    border: 1px solid var(--nieuw-goud);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
    transition: transform 0.3s ease;
}

.about-img-left:hover { transform: scale(1.03); }

@media (max-width: 768px) {
    .sticky-artikel-menu { padding: 8px 5px; }
    .sticky-artikel-menu ul { gap: 6px; }
    .sticky-artikel-menu a { font-size: 0.75rem; padding: 8px 6px; flex: 1; text-align: center; }
    .artikel-item { flex-direction: column; }
    #artikel-2 { grid-template-columns: 1fr !important; }
    #artikel-2 .artikel-media { grid-column: span 1 !important; }
    .referentie-rij { 
        grid-template-columns: 1fr !important; 
        justify-items: center !important; 
        text-align: center !important; 
    }
}

/* --- Huisstijl voor Artikelen --- 

/* 1. Zorg dat alles in de artikel-item als basis de goudkleur krijgt (voor tekstkleur overerving) 
.artikel-item {
    color: var(--nieuw-goud); 
}

/* 2. Dwing de H2 titels specifiek naar goud 
.artikel-item h2 {
    color: var(--nieuw-goud) !important;
}

/* 3. Geef de paragrafen een eigen kleur (bijvoorbeeld een zachtere variant of wit) 
.artikel-item p {
    color: #ffffff; 
    line-height: 1.6;
    margin-bottom: 15px;
} */

/* --- Huisstijl voor Artikelen --- */

/* 1. Zorg dat alles in de artikel-item als basis de goudkleur krijgt */
.artikel-item {
    color: var(--nieuw-goud); 
}

/* 2. Dwing de H2 titels specifiek naar goud */
.artikel-item h2, 
.artikel-item h3, 
.artikel-item h4 {
    color: var(--nieuw-goud) !important;
    border-bottom: 1px solid var(--nieuw-goud);
    display: inline-block;
    margin-bottom: 15px;
}

/* 3. Zet alle p-elementen in de artikelen naar je huisstijl goudkleur */
.artikel-item p {
    color: var(--nieuw-goud); /* Gebruikt je gedefinieerde goudkleur */
    line-height: 1.8;
    margin-bottom: 20px;
}

/* 4. Zorg dat lijsten ook de goudkleur overnemen */
.artikel-item li {
    color: var(--nieuw-goud);
    margin-bottom: 10px;
}