/* ===== Wolfsden Cosplay - Base Styles ===== */
/* Gebruikt door alle pagina's (publiek, portal, admin) */

/* ===== Basis layout ===== */

body {
    margin: 0;
    padding: 0;
    background: #050505;
    color: #f5f5f5;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Links en algemene tekst */

a {
    color: #ffcc33;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ===== Header ===== */

.wd-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #111;
    border-bottom: 1px solid #333;
    z-index: 1000;
}

.wd-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wd-logo img {
    height: 80px;
    width: auto;
    vertical-align: middle;
}

.wd-site-name {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

/* ===== Menu / hamburger ===== */

.wd-menu-dropdown {
    position: relative;
    flex: 0 0 auto;
}

.wd-menu-button {
    background: linear-gradient(135deg, #1a0505, #301010);
    color: #eee;
    border: 1px solid #552222;
    padding: 6px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wd-menu-button:hover {
    border-color: #aa4444;
    box-shadow: 0 0 6px rgba(170, 68, 68, 0.6);
}

.wd-menu-icon {
    display: inline-block;
    width: 18px;
    position: relative;
}

.wd-menu-icon span {
    display: block;
    height: 2px;
    margin: 3px 0;
    background: #eee;
    transform-origin: left center;
}

.wd-menu-icon span:nth-child(1) {
    transform: rotate(-6deg);
    background: #ff7676;
}

.wd-menu-icon span:nth-child(2) {
    transform: rotate(0deg);
}

.wd-menu-icon span:nth-child(3) {
    transform: rotate(6deg);
    background: #ff7676;
}

.wd-menu-panel {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #0b0506;
    border: 1px solid #552222;
    padding: 10px;
    min-width: 220px;
    z-index: 1001;
    box-shadow: 0 4px 10px rgba(0,0,0,0.8);
}

.wd-menu-panel a {
    display: block;
    padding: 4px 0;
    color: #ddd;
}

.wd-menu-panel a:hover {
    color: #fff;
}

.wd-menu-dropdown:hover .wd-menu-panel {
    display: block;
}

/* ===== Publieke pagina layout (homepage, tarieven, etc) ===== */

.wd-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 110px 15px 40px;
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(260px, 1fr);
    gap: 20px;
}

.wd-main {
    min-width: 0;
}

.wd-sidebar {
    min-width: 0;
}

/* ===== Box-styling (cards) - Gebruikt overal ===== */

.wd-box {
    background: #111;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.wd-box h1,
.wd-box h2,
.wd-box h3 {
    margin-top: 0;
}

/* ===== Mini gallery strip ===== */

.wd-mini-gallery-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.wd-mini-gallery-strip img {
    display: block;
    height: 70px;
    width: auto;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid #333;
}

/* Gallery thumbnails - clickable met hover effect */
.wd-gallery-thumb {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.wd-gallery-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 204, 51, 0.5);
}

/* ===== Sidebar calendar (publieke pagina's) ===== */

.wd-sidebar-calendar table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    text-align: center;
}

.wd-sidebar-calendar th,
.wd-sidebar-calendar td {
    border: 1px solid #333;
    padding: 4px;
}

.wd-sidebar-calendar th {
    background: #181818;
}

.wd-sidebar-calendar td a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.wd-day-free {
    background: #133313;
}

.wd-day-busy {
    background: #331313;
}

/* ===== Mini Calendar (homepage sidebar) ===== */

.wd-mini-calendar-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.75em;
    text-align: center;
    margin-top: 8px;
}

.wd-mini-calendar-table th {
    padding: 3px;
    font-weight: normal;
    color: #aaa;
}

.wd-mini-calendar-table td {
    padding: 4px 2px;
    border: 1px solid #222;
}

.wd-mini-day-free {
    background-color: #133313;
    color: #88cc88;
}

.wd-mini-day-limited {
    background-color: #3a2a00;
    color: #ffd999;
}

.wd-mini-day-full {
    background-color: #331313;
    color: #cc6666;
}

.wd-mini-day-today {
    outline: 1px solid #bbb;
}

.wd-mini-calendar-table a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.wd-mini-calendar-table a:hover {
    text-decoration: underline;
}

/* ===== Event list (homepage sidebar) ===== */

.wd-event-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
    font-size: 0.85em;
    max-height: 200px;
    overflow-y: auto;
}

.wd-event-list li {
    padding: 4px 0;
    border-bottom: 1px solid #333;
}

.wd-event-list li:last-child {
    border-bottom: none;
}

/* ===== Reviews (homepage) ===== */

.wd-review-item {
    border-left: 3px solid #ffa500;
    padding-left: 10px;
    margin-bottom: 15px;
}

.wd-review-stars {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.wd-review-text {
    font-style: italic;
    margin: 8px 0;
    color: #ddd;
}

.wd-review-author {
    font-size: 0.85em;
    color: #999;
}

.wd-review-summary {
    text-align: center;
    padding: 10px;
    background: #1a1a1a;
    border-radius: 4px;
    margin-bottom: 15px;
}

.wd-review-summary-stars {
    font-size: 1.5em;
    color: #ffa500;
}

/* ===== Footer ===== */

.wd-footer {
    background: #080808;
    border-top: 1px solid #333;
    margin-top: 30px;
    padding: 20px 15px 10px;
}

.wd-footer-inner {
    max-width: 1200px;
    margin: 0 auto 10px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.wd-footer-section h4 {
    margin-top: 0;
}

.wd-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.8rem;
    color: #aaa;
    text-align: center;
}

/* ===== Pricing (tarieven) ===== */

.wd-pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.wd-pricing-card {
    background: #111;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #333;
}

.wd-pricing-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.wd-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffcc33;
    margin-bottom: 8px;
}

.wd-pricing-card ul {
    margin: 0 0 8px 18px;
    padding: 0;
}

.wd-pricing-card li {
    margin-bottom: 4px;
}

.wd-note {
    font-size: 0.85rem;
    color: #ccc;
}

.wd-pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 0.95rem;
}

.wd-pricing-table th,
.wd-pricing-table td {
    border: 1px solid #333;
    padding: 8px 10px;
    text-align: left;
}

.wd-pricing-table thead th {
    background: #181818;
    font-weight: 600;
}

.wd-pricing-table tbody tr:nth-child(odd) {
    background: #141414;
}

.wd-pricing-table tbody tr:nth-child(even) {
    background: #101010;
}

.wd-pricing-footnote {
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 8px;
}

/* ===== Agenda-cellen ===== */

.wd-agenda-table {
    border-collapse: collapse;
    width: 100%;
}

.wd-agenda-table td,
.wd-agenda-table th {
    border: 1px solid #444;
    padding: 4px;
    text-align: center;
}

.wd-agenda-table td.wd-day-free {
    background-color: #1e7a1e !important;
    color: #f5f5f5 !important;
}

.wd-agenda-table td.wd-day-limited {
    background-color: #b87333 !important;
    color: #000 !important;
}

.wd-agenda-table td.wd-day-full {
    background-color: #aa1e1e !important;
    color: #f5f5f5 !important;
}

/* ===== Responsive ===== */

@media (max-width: 800px) {
    .wd-page {
        grid-template-columns: 1fr;
        padding: 110px 10px 30px;
    }

    .wd-header-inner {
        padding: 6px 10px;
    }

    .wd-site-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .wd-logo img {
        height: 70px;
    }
}

/* ===== Reviews Page ===== */

.wd-reviews-header {
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px solid #333;
    margin-bottom: 20px;
}

.wd-reviews-header h1 {
    margin: 0 0 10px 0;
}

.wd-review-summary-large {
    font-size: 1.2em;
    color: #ffa500;
}

.wd-review-filters {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #1a1a1a;
    border-radius: 4px;
}

.wd-review-filters a {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 5px;
    background: #2a2a2a;
    color: #ddd;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s;
}

.wd-review-filters a:hover {
    background: #3a3a3a;
}

.wd-review-filters a.active {
    background: #ffa500;
    color: #000;
    font-weight: bold;
}

.wd-review-card {
    background: #1a1a1a;
    border-left: 4px solid #ffa500;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.wd-review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.wd-review-card .wd-review-stars {
    font-size: 1.3em;
}

.wd-review-date {
    color: #999;
    font-size: 0.85em;
}

.wd-review-card .wd-review-text {
    font-size: 1.05em;
    line-height: 1.6;
    margin: 15px 0;
    color: #ddd;
    font-style: italic;
}

.wd-review-card .wd-review-author {
    font-size: 0.9em;
    color: #aaa;
    margin-top: 10px;
}

.wd-pagination {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.wd-pagination a,
.wd-pagination span {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 3px;
    background: #2a2a2a;
    color: #ddd;
    text-decoration: none;
    border-radius: 4px;
}

.wd-pagination a:hover {
    background: #3a3a3a;
}

.wd-pagination .current {
    background: #ffa500;
    color: #000;
    font-weight: bold;
}

.wd-no-reviews {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

/* ===== Event Page (Publieke deelbare events) ===== */

.event-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid #ffa500;
    border-radius: 8px;
    padding: 40px;
    margin: 30px 0;
    text-align: center;
}

.event-title {
    font-size: 2.5em;
    color: #ffa500;
    margin: 0 0 20px 0;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
}

.event-info {
    background: #0d0d0d;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 30px;
    margin: 20px 0;
}

.event-info-row {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #222;
    font-size: 1.1em;
}

.event-info-row:last-child {
    border-bottom: none;
}

.event-info-icon {
    font-size: 1.5em;
    margin-right: 15px;
    color: #ffa500;
    min-width: 30px;
    text-align: center;
}

.event-info-content {
    flex: 1;
    color: #ddd;
}

.event-description {
    background: #1a1a1a;
    border-left: 4px solid #ffa500;
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #ccc;
}

.event-cta {
    background: linear-gradient(135deg, #ffa500 0%, #ff8800 100%);
    color: #000;
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 20px 0;
    transition: transform 0.2s;
}

.event-cta:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.social-share-section {
    background: #0d0d0d;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
}

.social-share-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.social-btn {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: opacity 0.2s;
}

.social-btn:hover {
    opacity: 0.8;
    text-decoration: none;
}

.qr-code-section {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

.qr-code-section img {
    border: 4px solid #ffa500;
    border-radius: 8px;
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    margin: 10px 0;
}

.status-bevestigd {
    background: #2d5f2d;
    color: #88cc88;
    border: 1px solid #448844;
}

.status-afgerond {
    background: #3d3d3d;
    color: #aaa;
    border: 1px solid #555;
}

.event-footer-info {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .event-title {
        font-size: 1.8em;
    }
    
    .event-hero {
        padding: 20px;
    }
    
    .event-info {
        padding: 15px;
    }
}