/*
Theme Name: DutchHotties
Description: A beautiful profile website theme for showcasing Dutch talent with custom post types, filtering, and social media integration.
Version: 1.7.5
Author: Defendere LLC
Author URI: https://defenderellc.com
Text Domain: dutchhotties
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: profiles, talent, social-media, custom-post-types, responsive
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Design tokens (Customizer overrides --dh-* in wp_head) */
:root {
    /* Typography — praktisch: Inter (body/UI), Outfit (koppen) */
    --dh-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --dh-font-heading: 'Outfit', 'Inter', system-ui, sans-serif;
    --dh-primary: #6d28d9;
    --dh-secondary: #5b21b6;
    --dh-accent: #ff6a00;
    /* Buttons & CTAs — overridden in Customizer (wp_head) */
    --dh-btn-gradient-text: #ffffff;
    --dh-btn-ghost-text: #6d28d9;
    --dh-btn-ghost-text-hover: #5b21b6;
    --dh-radius: 16px;
    --dh-radius-sm: 12px;
    --dh-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    --dh-shadow-hover: 0 20px 50px rgba(15, 23, 42, 0.12);
}

/* Koppen: Outfit (body blijft Inter) */
h1, h2, h3, h4, h5, h6,
.header-title,
.profile-header-title,
.news-header-title,
.profile-name,
.news-title h3,
.dh-home-hero__title,
.dh-home-shop__title,
.footer-brand-name,
.footer-menu-title {
    font-family: var(--dh-font-heading);
}

body {
    font-family: var(--dh-font-body);
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
}

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

/* Header — rustig: 2-stop paars (geen oranje); subtiele gouden lijn (footer-familie) */
.site-header {
    background: linear-gradient(155deg, var(--dh-primary) 0%, var(--dh-secondary) 100%);
    color: white;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.site-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.35), transparent);
    pointer-events: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.logo-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

/* Logo — korte intro */
.logo-animated {
    animation: dhLogoIntro 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transform-origin: center center;
}

@keyframes dhLogoIntro {
    0% {
        transform: rotate(-4deg) scale(0.96);
        opacity: 0.85;
    }
    100% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
}

.title-animated {
    animation: titleSlideIn 0.55s ease-out 0.04s both;
    transform: translateY(12px);
    opacity: 0;
}

@keyframes titleSlideIn {
    0% {
        transform: translateY(12px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.subtitle-animated {
    animation: subtitleFadeIn 0.55s ease-out 0.1s both;
    opacity: 0;
}

@keyframes subtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-text {
    text-align: center;
}

.header-title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.header-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

/* Front page hero */
.dh-home-hero {
    margin: 1.5rem 0 1.25rem;
    padding: 2rem 1.5rem;
    border-radius: var(--dh-radius);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.95) 100%);
    border: 1px solid rgba(109, 40, 217, 0.12);
    box-shadow: var(--dh-shadow);
}

.dh-home-hero__inner {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
}

.dh-home-hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dh-accent);
    margin-bottom: 0.5rem;
}

.dh-home-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.dh-home-hero__sub {
    font-size: 1rem;
    color: #334155 !important;
    line-height: 1.55;
    margin-bottom: 1.5rem;
}

.dh-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.dh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.35rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: 2px solid transparent;
}

.dh-btn--primary {
    background: linear-gradient(135deg, var(--dh-primary) 0%, var(--dh-secondary) 100%);
    color: var(--dh-btn-gradient-text, #fff) !important;
    box-shadow: 0 4px 18px rgba(109, 40, 217, 0.35);
}

.dh-btn--primary:hover,
.dh-btn--primary:focus,
.dh-btn--primary:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(109, 40, 217, 0.4);
    color: var(--dh-btn-gradient-text, #fff) !important;
}

.dh-btn--ghost {
    background: transparent;
    color: var(--dh-btn-ghost-text, var(--dh-primary)) !important;
    border-color: rgba(109, 40, 217, 0.35);
}

.dh-btn--ghost:hover,
.dh-btn--ghost:focus,
.dh-btn--ghost:active {
    background: rgba(109, 40, 217, 0.06);
    color: var(--dh-btn-ghost-text-hover, var(--dh-secondary)) !important;
}

/* WooCommerce strip */
.dh-home-shop {
    margin: 2rem 0;
    padding: 1.5rem 1.25rem 2rem;
    border-radius: var(--dh-radius);
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--dh-shadow);
}

.dh-home-shop__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.dh-home-shop__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.dh-home-shop__all {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dh-accent);
    text-decoration: none;
}

.dh-home-shop__all:hover {
    text-decoration: underline;
}

.dh-home-shop__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.dh-home-shop__card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-decoration: none;
    color: inherit;
    border-radius: var(--dh-radius-sm);
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dh-home-shop__card:hover {
    transform: translateY(-3px);
    box-shadow: var(--dh-shadow-hover);
}

.dh-home-shop__media {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: #e2e8f0;
}

.dh-home-shop__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dh-home-shop__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 120px;
    background: linear-gradient(135deg, #e9d5ff 0%, #fed7aa 100%);
}

.dh-home-shop__name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f172a;
    padding: 0 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dh-home-shop__price {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dh-accent);
    padding: 0 0.5rem 0.65rem;
}

/* Search Section */
.search-section {
    background: white;
    border-radius: var(--dh-radius-sm);
    box-shadow: var(--dh-shadow);
    padding: 1.5rem;
    margin: 2rem 0;
}

.search-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-field {
    flex: 1;
}

.filter-field {
    min-width: 180px;
}

.search-input, .filter-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease;
}

.search-input:focus, .filter-select:focus {
    outline: none;
    border-color: var(--dh-primary);
    box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.15);
}

.search-input::placeholder,
.news-search-section .search-input::placeholder {
    color: #64748b;
    opacity: 1;
}

/* News Button Container */
.news-button-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.news-button {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.news-button:hover,
.news-button:focus {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(109, 40, 217, 0.35);
    text-decoration: none;
    color: #fff !important;
}

/* Navigation Buttons */
.profile-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
}

.back-button, .next-button {
    background: linear-gradient(135deg, var(--dh-primary) 0%, var(--dh-secondary) 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 180px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.back-button:hover, .next-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(109, 40, 217, 0.35);
    text-decoration: none;
    color: white;
}

.next-button {
    background: linear-gradient(135deg, var(--dh-secondary) 0%, var(--dh-accent) 100%);
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.28);
}

.next-button:hover {
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.25);
}

/* Profile Grid */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    align-items: stretch;
    gap: 2rem;
    margin: 2rem 0;
}

.show-more-container {
    text-align: center;
    margin: 2.5rem 0 3rem;
}

.show-more-button {
    background: linear-gradient(135deg, var(--dh-primary) 0%, var(--dh-secondary) 100%);
    color: #fff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 18px rgba(109, 40, 217, 0.3);
    font-family: var(--dh-font-body);
}

.show-more-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(109, 40, 217, 0.35);
}

.profile-card {
    background: white;
    border-radius: var(--dh-radius);
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--dh-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.profile-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--dh-shadow-hover);
}

.profile-name {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: #1f2937;
    line-height: 1.25;
    min-height: 2.5em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.profile-image-container {
    height: 250px;
    position: relative;
}

@media (min-width: 1024px) {
    .profile-image-container {
        height: 300px;
    }

    .profile-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

.profile-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    cursor: pointer;
    transition: transform 0.45s ease;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Stable layer — avoids extra blur when GPU-scaling the photo */
    transform: translateZ(0);
}

.profile-featured-image:hover {
    transform: translateZ(0) scale(1.06);
}

.profile-featured-image.rotating {
    transform: rotateY(360deg);
}

.profile-content {
    padding: 1.5rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.profile-category {
    color: #6b7280;
    font-size: 0.9rem;
    text-transform: capitalize;
    margin-bottom: 1rem;
}

/* Grid: max. 2 regels; emoji uit PHP-preview — profielpagina = volledige bio */
.profile-bio {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
    flex: 1 1 auto;
    min-height: 0;
    max-height: calc(1.5em * 2);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
    margin-top: 0;
    border-top: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Outline SVG’s i.p.v. emoji (DefendereLLC / social-icon-svgs.php) */
.social-icon-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    margin-bottom: 0.25rem;
    color: #6b7280;
}

.social-icon-svg svg {
    display: block;
    width: 100%;
    height: 100%;
}

.social-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.social-icon:hover .social-icon-svg {
    color: #8b5cf6;
}

.social-icon:hover .social-label {
    color: #8b5cf6;
}

/* Gallery Preview in Cards — pin to bottom row so tiles align across the grid */
.gallery-preview {
    position: relative;
    margin: 1rem 0 0;
    border-radius: 8px;
    overflow: hidden;
    margin-top: auto;
    flex-shrink: 0;
}

/* No gallery: keep social row aligned with cards that have a preview */
.profile-content:not(:has(.gallery-preview)) .social-icons {
    margin-top: auto;
}

.gallery-preview-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-preview:hover .gallery-preview-image {
    transform: scale(1.05);
}

.gallery-count {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.vip-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 2px;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none;
}

.vip-badge.vip-active {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1f2937;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    opacity: 1 !important;
    visibility: visible !important;
}

.vip-badge.vip-active::before {
    content: '👑';
    font-size: 0.8rem;
}

/* Ensure VIP badge stays visible during hover effects */
.profile-card:hover .vip-badge,
.profile-image-container:hover .vip-badge {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 100;
}
/* Single Profile Page */
.single-profile {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.profile-header {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

.profile-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 2rem;
}

.profile-header-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.profile-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
}

.profile-body {
    padding: 2rem;
}

.profile-section {
    margin-bottom: 2rem;
}

.profile-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1f2937;
}

.profile-tag {
    background: #f3e8ff;
    color: #7c3aed;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.profile-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Video Gallery Styles */
.video-item {
    position: relative;
}

.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.video-container video {
    transition: transform 0.3s ease;
}

.video-container:hover video {
    transform: scale(1.02);
}

.video-overlay {
    pointer-events: none;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.video-indicator {
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
    cursor: default;
    object-fit: contain;
}

@keyframes zoomIn {
    from { transform: translate(-50%, -50%) scale(0.8); }
    to { transform: translate(-50%, -50%) scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    user-select: none;
}

.lightbox-close:hover {
    color: #ff6b6b;
    transform: scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* No results message */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* JavaScript animations */
@keyframes rotate {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.rotating {
    animation: rotate 0.5s ease-in-out;
}

/* Footer — dark premium band (Customizer overrides background + gold line) */
.site-footer {
    background: linear-gradient(180deg, #0a0a12 0%, #16161f 52%, #0a0a12 100%);
    color: rgba(255, 255, 255, 0.92);
    padding: 0 0 2rem;
    margin-top: 3.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2.75rem;
}

.footer-brand {
    text-align: center;
    padding-bottom: 2.25rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-name {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 0.65rem;
    color: rgba(255, 255, 255, 0.96);
    line-height: 1.2;
}

.footer-brand-name::after {
    content: "";
    display: block;
    width: min(200px, 50vw);
    height: 2px;
    margin: 1rem auto 0;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.9), transparent);
    border-radius: 2px;
}

.footer-tagline {
    margin: 0 auto;
    max-width: 36rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.02em;
}

.footer-menus {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.footer-menu-block {
    text-align: left;
}

.footer-menu-title {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin: 0;
    padding: 0;
}

/* Standard wp_nav_menu: compact text links (not buttons) */
.footer-menu a {
    display: block;
    padding: 0.15rem 0;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    border-radius: 0;
    border: none;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
    transition: color 0.15s ease, padding-left 0.15s ease;
}

.footer-menu a:hover {
    color: #fff;
    padding-left: 3px;
    text-decoration: none;
    background: none;
    transform: none;
    box-shadow: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-bottom-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}

.footer-age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(201, 162, 39, 0.45);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.25);
}

.footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.875rem;
    letter-spacing: 0.02em;
}

.footer-vantage {
    margin: 0;
}

.footer-vantage-link {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.15s ease;
}

.footer-vantage-link:hover {
    color: rgba(201, 162, 39, 0.95);
}

.footer-social {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon svg {
    display: block;
    width: 14px;
    height: 14px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.88);
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    color: #fff;
}

/* SEO-only elements - hidden from display but accessible to search engines */
.seo-only {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .header-title {
        font-size: 2rem;
    }
    
    .header-subtitle {
        font-size: 1rem;
    }
    
    .logo-container {
        width: 60px;
        height: 60px;
    }
    
    .search-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-field, .filter-field {
        min-width: 100%;
    }
    
    .search-input, .filter-select {
        font-size: 16px;
        padding: 14px 16px;
    }
    
    .news-button-container {
        margin: 2rem 0;
    }
    
    .news-button {
        width: 100%;
        min-width: 100%;
        height: 60px;
        padding: 18px 24px;
        justify-content: center;
    }
    
    .profile-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .back-button, .next-button {
        width: 100%;
        min-width: 100%;
        height: 60px;
        padding: 18px 24px;
    }
    
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .profile-header {
        height: 300px;
    }
    
    .profile-header-title {
        font-size: 2rem;
    }
    
    .profile-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .profile-body {
        padding: 1.5rem;
    }
    
    .profile-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .footer-menus {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-meta {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

/* Responsive Embedded Content (YouTube, Vimeo, etc.) */
.post-content iframe,
.page-content iframe,
.profile-section iframe,
.news-content iframe,
article iframe,
.entry-content iframe {
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 16/9;
}

/* Responsive Video Container */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border-radius: 8px;
}

/* YouTube Specific Responsive Styling */
iframe[src*="youtube.com"],
iframe[src*="youtu.be"],
iframe[src*="vimeo.com"],
iframe[src*="dailymotion.com"],
iframe[src*="twitch.tv"] {
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 16/9;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Specific Iframe Adjustments */
@media (max-width: 768px) {
    .post-content iframe,
    .page-content iframe,
    .profile-section iframe,
    .news-content iframe,
    article iframe,
    .entry-content iframe {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/9;
        margin: 1rem 0;
    }
    
    iframe[src*="youtube.com"],
    iframe[src*="youtu.be"],
    iframe[src*="vimeo.com"] {
        width: 100% !important;
        height: auto !important;
        min-height: 200px;
        aspect-ratio: 16/9;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    iframe[src*="youtube.com"],
    iframe[src*="youtu.be"],
    iframe[src*="vimeo.com"] {
        min-height: 180px;
        margin: 1rem 0;
    }
    
    .video-responsive {
        margin: 1rem 0;
        border-radius: 6px;
    }
}

/* Embedded Content General Responsiveness */
.post-content embed,
.post-content object,
.page-content embed,
.page-content object {
    max-width: 100% !important;
    height: auto !important;
}

/* WordPress Gutenberg Video Block Responsiveness */
.wp-block-embed__wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .site-header {
        padding: 1.5rem 0;
    }
    
    .header-title {
        font-size: 1.75rem;
    }
    
    .header-subtitle {
        font-size: 0.9rem;
    }
    
    .logo-container {
        width: 50px;
        height: 50px;
    }
    
    .search-section {
        padding: 1.25rem;
        margin: 1.25rem 0;
    }
    
    .news-button-container {
        margin: 1.5rem 0;
    }
    
    .news-button {
        height: 56px;
        font-size: 14px;
        padding: 16px 20px;
    }
    
    .back-button, .next-button {
        height: 56px;
        font-size: 14px;
        padding: 16px 20px;
    }
    
    .profile-body {
        padding: 1rem;
    }
    
    .footer-menus {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-menu-block {
        text-align: center;
    }
    
    .site-footer {
        padding: 0 0 1.75rem;
    }
    
    .footer-brand {
        padding-bottom: 1.75rem;
        margin-bottom: 1.5rem;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .profile-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .profile-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================================================
   Scrollbar — globaal op <html data-dh-scrollbar="light|dark"> (Customizer)
   Eén stijl voor hele viewport; wisselt niet bij scroll door header/footer.
   ============================================================================= */

html {
    scrollbar-gutter: stable;
}

/* Light: lichte track + paarse thumb (primary/secondary uit :root / Customizer) */
html[data-dh-scrollbar="light"] {
    scrollbar-width: thin;
    scrollbar-color: var(--dh-primary) #f1f5f9;
}

html[data-dh-scrollbar="light"]::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

html[data-dh-scrollbar="light"]::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 999px;
}

html[data-dh-scrollbar="light"]::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--dh-primary) 0%, var(--dh-secondary) 100%);
    border-radius: 999px;
    border: 2px solid #f1f5f9;
}

html[data-dh-scrollbar="light"]::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--dh-secondary) 0%, var(--dh-primary) 100%);
}

/* Dark: footer-achtige track + goud met paarse gloed */
html[data-dh-scrollbar="dark"] {
    scrollbar-width: thin;
    scrollbar-color: #c9a227 #16161f;
}

html[data-dh-scrollbar="dark"]::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

html[data-dh-scrollbar="dark"]::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #0a0a12 0%, #16161f 100%);
    border-radius: 999px;
}

html[data-dh-scrollbar="dark"]::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #e8c547 0%, #c9a227 45%, #7c3aed 100%);
    border-radius: 999px;
    border: 2px solid #16161f;
}

html[data-dh-scrollbar="dark"]::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #fde68a 0%, #c9a227 50%, #6d28d9 100%);
}

/* Nieuws — wrapper na “Nieuws-layout” in bericht (Customizer + meta box) */
.dh-news-formatted {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.single-profile .dh-news-formatted {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #374151;
}

.single-profile .dh-news-formatted p {
    margin-bottom: 1.25rem;
}