/* ==========================================================================
   0. INSTELLINGEN EN VARIABELEN (Dark & Light Mode)
   ========================================================================== */
:root {
    --bg-color: #111111;
    --box-bg: #161616;
    --box-border: #222222;
    --text-color: #ffffff;
    --text-muted: #aaaaaa;
    --nav-bg: #000000;
    --nav-border: #ffffff;
    --prompt-bg: #0d0d0d;
    --prompt-wrapper-bg: #161616;
}

[data-theme="light"] {
    --bg-color: #f4f4f6;
    --box-bg: #ffffff;
    --box-border: #e0e0e0;
    --text-color: #111111;
    --text-muted: #666666;
    --nav-bg: #000000;      
    --nav-border: #00A3A0;
    --prompt-bg: #f9f9fb;
    --prompt-wrapper-bg: #ffffff;
}

/* ==========================================================================
   1. BASISELEMENTEN & TYPOGRAFIE
   ========================================================================== */
html {
    scrollbar-gutter: stable;
    overflow-y: scroll;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #00A3A0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--text-color);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: #00A3A0;
    color: #000000;
}

/* ==========================================================================
   2. NAVIGATIEMENU (Logo & Dropdown Menu)
   ========================================================================== */
nav {
    background-color: var(--nav-bg);
    border-bottom: 4px solid var(--nav-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    width: 100%;
    display: block;
    position: relative;
    z-index: 1000;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

nav .container {
    padding: 0 20px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 95px;
    flex-wrap: nowrap;
}

.logo {
    height: 95px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    height: 54px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.04);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 28px;
}

nav ul li {
    display: inline-flex;
    align-items: center;
}

nav ul li a {
    color: var(--text-muted); 
    text-transform: uppercase;
    font-size: 1.0rem; 
    font-weight: 700; 
    letter-spacing: 1.5px; 
    padding: 8px 0;
    transition: color 0.2s ease-in-out;
    white-space: nowrap;
}

nav ul li a:hover,
nav ul li a.active-link {
    color: #00A3A0;
    text-shadow: 0 0 10px rgba(0, 163, 160, 0.4);
}

.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-dropdown-btn {
    background: #141414;
    border: 1px solid #333;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: all 0.2s ease;
    outline: none;
}

.user-dropdown-btn:hover,
.user-dropdown.open .user-dropdown-btn,
.user-dropdown:hover .user-dropdown-btn {
    border-color: #00A3A0;
    color: #00A3A0;
    background: #1a1a1a;
}

.dropdown-arrow {
    font-size: 0.7rem;
    color: #888;
    transition: transform 0.2s ease;
}

.user-dropdown.open .dropdown-arrow,
.user-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: #00A3A0;
}

.user-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 5px;
    background: #121212;
    border: 1px solid #333;
    border-top: 3px solid #00A3A0;
    border-radius: 6px;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
    z-index: 1100;
    padding: 6px 0;
}

.user-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.user-dropdown.open .user-dropdown-menu,
.user-dropdown:hover .user-dropdown-menu {
    display: block;
}

.user-dropdown-menu a {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 20px !important;
    color: #ccc !important;
    font-size: 0.95rem !important;
    text-decoration: none;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    font-weight: 600 !important;
    border-bottom: 1px solid #1a1a1a;
    transition: background 0.2s ease, color 0.2s ease;
}

.user-dropdown-menu a:last-child {
    border-bottom: none;
}

.user-dropdown-menu a:hover {
    background: #1a1a1a;
    color: #00A3A0 !important;
}

.user-dropdown-menu a i {
    font-size: 1.05rem;
    width: 18px;
    text-align: center;
}

.user-dropdown-menu a.logout-link {
    color: #ff7777 !important;
}

.user-dropdown-menu a.logout-link:hover {
    background: #251010;
    color: #ff9999 !important;
}

/* ==========================================================================
   3. LANDINGSPAGINA (index.php) & HERO
   ========================================================================== */
.hero-banner {
    height: 65vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    text-align: center;
    padding-top: 15vh;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    background-color: #00A3A0;
    color: #000000;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.7);
}

.hero-content h1 span {
    color: #00A3A0;
}

.hero-content p {
    font-size: 1.25rem;
    color: #eee;
    margin-bottom: 35px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
    line-height: 1.6;
}

.hero-btn-container {
    text-align: center;
    width: 100%;
}

.btn-portfolio {
    border: 2px solid #00A3A0;
    box-shadow: 0 0 15px rgba(0, 163, 160, 0.3);
    letter-spacing: 1px;
}

.intro-container {
    display: block;
    margin: 60px auto;
}

.intro-text {
    width: 65%;
    float: left;
}

.intro-disclaimer {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    font-style: italic;
    margin-top: 20px !important;
    border-top: 1px solid var(--box-border);
    padding-top: 10px;
    display: block;
}

.insta-callout {
    width: 30%;
    float: right;
    background-color: var(--box-bg);
    border: 1px solid var(--box-border);
    border-top: 4px solid #00A3A0;
    padding: 30px;
    border-radius: 6px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.intro-container::after {
    content: "";
    display: table;
    clear: both;
}

.intro-text h2 {
    font-size: 2rem;
    margin-top: 0;
    border-left: 4px solid #00A3A0;
    padding-left: 15px;
    text-transform: uppercase;
}

.intro-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.insta-callout h3 {
    margin-top: 0;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.insta-link {
    color: #00A3A0;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}

.insta-link:hover {
    color: var(--text-color);
    text-decoration: underline;
}

.insta-link i {
    margin-right: 8px;
    font-size: 1.2rem;
    vertical-align: middle;
    transition: transform 0.2s ease;
    display: inline-block;
}

.insta-link:hover i {
    transform: scale(1.1);
    color: var(--text-color);
}

.insta-feed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.insta-feed-item {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1; 
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--box-border);
}

.insta-feed-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.4s ease;
}

@media (max-width: 768px) {
    .insta-feed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* ==========================================================================
   4. GALERIJ & ALBUMS
   ========================================================================== */
.album-sectie {
    margin-bottom: 60px;
}

.album-link-header {
    color: #00A3A0;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-left: 4px solid #00A3A0;
    padding-left: 15px;
    display: inline-block;
    font-weight: bold;
}

.album-link-header:hover {
    color: var(--text-color);
    padding-left: 25px;
}

.galerij {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    align-items: start;
    justify-content: start;
    width: 100%;
    clear: both;
}

.galerij-item {
    background-color: var(--box-bg);
    border: 1px solid var(--box-border);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.galerij-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.galerij:not(.album-overzicht) .galerij-item img,
.galerij:not(.album-overzicht) .galerij-item video {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid var(--box-border);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.galerij:not(.album-overzicht) .galerij-item:hover img {
    transform: scale(1.02);
}

.galerij-item p {
    padding: 0;
    margin: 0 0 6px 0;
    font-size: 1rem;
    color: var(--text-color);
    text-align: left;
    white-space: normal;
}

.galerij-card-content {
    padding: 15px 15px 10px 15px;
    text-align: left;
}

.galerij-card-content .werk-tags {
    margin-top: 6px;
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.galerij-card-content .model-wrapper {
    margin-top: 6px;
}

.tag-badge {
    font-size: 0.7rem;
    background-color: rgba(0, 163, 160, 0.1);
    color: #00A3A0;
    padding: 3px 8px;
    border-radius: 3px;
    border: 1px solid rgba(0, 163, 160, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: bold;
    display: inline-block;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tag-badge:hover {
    background-color: #00A3A0 !important;
    color: #000000 !important;
    border-color: #00A3A0 !important;
}

.prompt-wrapper {
    background-color: var(--prompt-wrapper-bg) !important;
}

.prompt-content {
    background-color: var(--prompt-bg) !important;
    border: 1px solid var(--box-border) !important;
}

.prompt-text {
    color: var(--text-muted) !important;
}

.album-overzicht.galerij .galerij-item {
    height: 320px !important;
    display: flex !important;
    flex-direction: column !important;
}

.album-overzicht.galerij .galerij-item img {
    height: 240px !important; 
    width: 100% !important;
    object-fit: cover !important; 
    object-position: center !important;
    display: block !important;
}

.album-overzicht.galerij .galerij-item p {
    margin-top: auto !important; 
    background-color: var(--box-bg) !important;
    padding: 15px !important;
    text-align: center !important;
}

@media (max-width: 768px) {
    .galerij {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   5. DASHBOARD & FORMULIEREN
   ========================================================================== */
.form-box {
    max-width: 500px;
    margin: 60px auto;
    background-color: var(--box-bg);
    border: 1px solid var(--box-border);
    border-top: 4px solid #00A3A0;
    padding: 40px;
    border-radius: 6px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.form-box h2 {
    margin-top: 0;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.6rem;
}

.form-box label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.form-box input[type="text"],
.form-box input[type="password"],
.form-box input[type="file"],
.form-box select {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-color);
    border: 1px solid var(--box-border);
    color: var(--text-color);
    border-radius: 4px;
    margin-bottom: 20px;
    font-family: inherit;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.form-box input:focus,
.form-box select:focus {
    outline: none;
    border-color: #00A3A0;
}

.form-box button {
    width: 100%;
    padding: 12px;
    background-color: #00A3A0;
    border: none;
    color: #000000;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-box button:hover {
    background-color: var(--text-color);
}

/* ==========================================================================
   6. RESPONSIVE MEDIA QUERIES (Menu & Dropdown)
   ========================================================================== */
.menu-toggle {
    display: none !important;
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
    nav ul {
        gap: 15px;
    }
    nav ul li a {
        font-size: 0.88rem;
        letter-spacing: 0.5px;
    }
    .user-name-text {
        max-width: 80px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media screen and (max-width: 768px) {
    .nav-wrapper {
        height: 75px !important;
    }

    .logo {
        height: 75px !important;
    }
    
    .logo img {
        height: 38px !important; 
    }

    .menu-toggle {
        display: block !important;
        background: none;
        border: none;
        color: #00A3A0;
        font-size: 1.8rem;
        cursor: pointer;
        height: 75px !important;
        line-height: 75px !important;
        padding: 0 10px;
    }

    nav ul {
        display: none !important;
        position: absolute;
        top: 75px;
        left: -20px;
        width: calc(100% + 40px);
        background-color: #0c0c0c;
        border-bottom: 4px solid var(--nav-border);
        padding: 15px 0 !important;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 25px rgba(0,0,0,0.8);
    }

    nav ul.active {
        display: flex !important;
    }

    nav ul li {
        width: 100%;
        display: block !important;
        text-align: center;
        border-bottom: 1px solid #1a1a1a;
    }

    nav ul li a {
        font-size: 1rem !important; 
        display: block;
        padding: 12px 0 !important;
        width: 100%;
    }

    .user-dropdown {
        width: 100%;
    }
    .user-dropdown-btn {
        width: 90%;
        justify-content: center;
        margin: 10px auto;
        border-radius: 4px;
    }
    .user-dropdown-menu {
        display: none !important;
        position: static;
        box-shadow: none;
        border: none;
        border-top: 1px solid #222;
        background: #080808;
        padding: 0;
    }
    .user-dropdown.open .user-dropdown-menu {
        display: block !important;
    }
    .user-dropdown-menu a {
        justify-content: center;
        padding: 12px 0 !important;
    }

    .intro-text, .insta-callout {
        width: 100% !important;
        float: none !important;
        margin-bottom: 30px !important;
    }

    .galerij-item {
        width: 100% !important;
        float: none !important;
        margin-right: 0 !important;
        margin-bottom: 25px !important;
    }
}

/* ==========================================================================
   7. OVERIGE COMPONENTEN (Toast & Ratings)
   ========================================================================== */
.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #161616;
    border: 1px solid #00A3A0;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.rating-container {
    margin: 20px 0;
    text-align: center;
    display: block !important;
}

.rating-titel {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #888 !important;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.sterren {
    display: inline-flex !important;
    flex-direction: row-reverse !important;
    justify-content: center;
    margin-bottom: 5px;
}

input.rating-radio {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
}

.sterren label {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif !important;
    font-weight: 900 !important;
    font-size: 1.8rem !important;
    color: #444444 !important;
    cursor: pointer !important;
    transition: color 0.2s ease, transform 0.2s ease;
    padding: 0 6px !important;
    display: inline-block !important;
}

.sterren label:hover,
.sterren label:hover ~ label {
    color: #00A3A0 !important;
    transform: scale(1.2) !important;
}

.sterren input.rating-radio:checked ~ label {
    color: #00A3A0 !important;
}

.sterren label:active {
    transform: scale(1.2) !important;
}

.rating-gemiddelde {
    font-size: 0.85rem;
    color: #888 !important;
    margin-top: 8px;
    display: block !important;
}

/* ==========================================================================
   8. SKELETON LOADER & LAAD-OPTIMALISATIE
   ========================================================================== */
.galerij-item img {
    width: 100%;
    display: block;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

/* Split-Screen Lightbox */
.lightbox-wrapper {
    display: flex;
    flex-direction: column;
    width: 95%;
    max-width: 1100px;
    height: 85vh;
    background-color: #121212;
    border: 1px solid #222;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 163, 160, 0.15);
}

.lightbox-media {
    flex: 1;
    background-color: #080808;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 10px;
}

.lightbox-media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-sidebar {
    width: 100%;
    background-color: #161616;
    border-top: 1px solid #222;
    padding: 25px;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .lightbox-wrapper {
        flex-direction: row;
    }
    .lightbox-sidebar {
        width: 320px;
        min-width: 320px;
        border-top: none;
        border-left: 1px solid #222;
    }
    .lightbox-media {
        padding: 30px;
    }
}

.lightbox-nav {
    transition: all 0.3s ease-in-out !important;
    opacity: 0.5;
}

.lightbox-prev:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.6);
    transform: translateY(-50%) translateX(-3px);
}

.lightbox-next:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.6);
    transform: translateY(-50%) translateX(3px);
}

/* ==========================================================================
   9. POPULAIRE TAGS & HIGHLIGHTS
   ========================================================================== */
.top-tags-container {
    margin: 15px 0 30px 0 !important;
    padding: 15px 20px !important;
    background-color: var(--box-bg) !important;
    border: 1px solid var(--box-border) !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    clear: both !important;
    box-sizing: border-box !important;
}

.top-tags-label {
    font-size: 0.85rem !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    color: #00A3A0 !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
}

.top-tags-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    align-items: center !important;
}

a.tag-pill {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background-color: #222222 !important;
    color: var(--text-color) !important;
    border: 1px solid #333333 !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    font-size: 0.75rem !important;
    font-weight: bold !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    line-height: 1 !important;
}

a.tag-pill:hover {
    background-color: #00A3A0 !important;
    color: #000000 !important;
    border-color: #00A3A0 !important;
    transform: translateY(-2px) !important;
}

.tag-count {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #aaaaaa !important;
    padding: 2px 7px !important;
    border-radius: 10px !important;
    font-size: 0.65rem !important;
    font-weight: normal !important;
}

a.tag-pill:hover .tag-count {
    background-color: rgba(0, 0, 0, 0.25) !important;
    color: #000000 !important;
}

.tag-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    clear: both;
}

.tag-highlight-card {
    position: relative;
    height: 220px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--box-border);
    display: flex;
    align-items: flex-end;
    text-decoration: none;
}

.tag-card-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.tag-highlight-card:hover .tag-card-bg {
    transform: scale(1.08);
}

.tag-card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
    transition: opacity 0.3s ease;
}

.tag-highlight-card:hover .tag-card-overlay {
    background: linear-gradient(to top, rgba(0, 163, 160, 0.8) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.2) 100%);
}

.tag-card-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    width: 100%;
    text-align: left;
}

.tag-card-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.tag-card-content p {
    margin: 4px 0 0 0;
    color: #00A3A0;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.tag-highlight-card:hover .tag-card-content p {
    color: #ffffff;
}

@media (max-width: 768px) {
    .tag-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .tag-highlight-card {
        height: 160px;
    }
}

/* ==========================================================================
   10. TOP 5 BEST BEOORDEELD
   ========================================================================== */
.top-rated-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    clear: both;
}

.top-rated-item {
    position: relative;
    margin: 0 !important;
}

.rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.85);
    color: #00A3A0;
    border: 1px solid #00A3A0;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-badge i {
    color: #ffca28;
}

@media (max-width: 1024px) {
    .top-rated-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .top-rated-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* ==========================================================================
   11. DASHBOARD HEALTH ALERTS
   ========================================================================== */
.alert-box-container {
    background-color: #1a1600;
    border: 1px solid #735c00;
    border-radius: 6px;
    padding: 18px 20px;
    margin-bottom: 25px;
    clear: both;
}

.alert-box-container.alert-success {
    background-color: #0d1e16;
    border-color: #00A3A0;
    color: #00A3A0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffca28;
    font-weight: bold;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.alert-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #dddddd;
    font-size: 0.88rem;
    padding-left: 5px;
}

/* ==========================================================================
   12. COOKIE MODAL (Pop-up overlay)
   ========================================================================== */
.cookie-modal-overlay {
    display: none;
    position: fixed;
    z-index: 10001;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-modal-overlay.active {
    display: flex !important;
    opacity: 1;
}

.cookie-modal-content {
    background-color: #161616;
    border: 1px solid #222;
    border-top: 4px solid #00A3A0;
    padding: 30px;
    border-radius: 6px;
    max-width: 450px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ffffff;
}

.cookie-modal-overlay.active .cookie-modal-content {
    transform: translateY(0);
}

.cookie-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #888;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.cookie-modal-close:hover {
    color: #00A3A0;
}

/* ==========================================================================
   13. NEWSLETTER WIDGET
   ========================================================================== */
.pnp-newsletter-card {
    background-color: var(--box-bg);
    border: 1px solid var(--box-border);
    border-top: 4px solid #00A3A0;
    border-radius: 6px;
    padding: 35px 25px;
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
    box-sizing: border-box;
    clear: both;
}

.pnp-newsletter-icon {
    font-size: 2.2rem;
    color: #00A3A0;
    margin-bottom: 10px;
}

.pnp-newsletter-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
}

.pnp-newsletter-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 25px 0;
}

.pnp-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 480px) {
    .pnp-newsletter-form {
        flex-direction: row;
    }
}

.pnp-newsletter-input {
    flex: 1;
    background-color: var(--bg-color);
    border: 1px solid var(--box-border);
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--text-color);
    outline: none;
    transition: border-color 0.3s ease;
}

.pnp-newsletter-input:focus {
    border-color: #00A3A0;
}

.pnp-newsletter-btn {
    background-color: #00A3A0;
    color: #000000;
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.pnp-newsletter-btn:hover {
    background-color: var(--text-color);
}

.pnp-newsletter-privacy {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 15px;
    font-style: italic;
}