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

body {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background-color: #f5f5f5;
}

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

/* Header */
.header {
    background-color: #2d1b4e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-btn {
    background-color: #d4a259;
    border: none;
    color: #fff;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    margin: 3px 0;
}

.menu-btn:hover {
    background-color: #c49047;
}

.logo h1 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-primary {
    background-color: #d4a259;
    color: #fff;
}

.btn-primary:hover {
    background-color: #c49047;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #2d1b4e;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #1f1336;
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background-color: #1f1336;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 99;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px 0;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.mobile-menu a:hover {
    background-color: rgba(212, 162, 89, 0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(45, 27, 78, 0.7), rgba(45, 27, 78, 0.7)),
                url('../assets/images/hero.webp') center/cover no-repeat;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #fff;
}

.hero-small {
    height: 350px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.8), rgba(212, 162, 89, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

/* Sidebar Filters */
.sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.filters {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filters h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-count {
    background-color: #d4a259;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.filter-section {
    margin-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2d1b4e;
}

.arrow {
    transition: transform 0.3s;
}

.filter-section.collapsed .arrow {
    transform: rotate(-90deg);
}

.filter-section.collapsed .filter-options {
    display: none;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tag {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.filter-tag:hover,
.filter-tag.active {
    background-color: #2d1b4e;
    color: #fff;
    border-color: #2d1b4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(45, 27, 78, 0.2);
}

.filter-tag:hover::after {
    content: '🔒 Registreer om te filteren';
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2d1b4e;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
}

.date-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.date-input:hover {
    border-color: #2d1b4e;
    background-color: #f8f8f8;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

/* Events Section */
.events-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.date-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #d4a259;
}

.date-label {
    color: #d4a259;
    font-weight: 700;
    font-size: 14px;
    margin-right: 10px;
}

.date-value {
    color: #1a1a1a;
    font-weight: 800;
    font-size: 24px;
}

/* Event Card */
.event-card {
    background-color: #fafafa;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e5e5e5;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.event-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 10px;
    margin-bottom: 10px;
}

.event-badge.favorites {
    background-color: #d4a259;
    color: #fff;
}

.event-badge.live {
    background-color: #2d1b4e;
    color: #fff;
}

.event-badge.experience {
    background-color: #5a3d7a;
    color: #fff;
}

.event-location {
    display: inline-block;
    color: #666;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
}

.event-title {
    font-size: 22px;
    font-weight: 700;
    margin: 15px 0;
    color: #1a1a1a;
}

.event-description {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.event-time {
    display: block;
    color: #2d1b4e;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.btn-page,
.btn-page-next {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #1a1a1a;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.btn-page:hover,
.btn-page-next:hover {
    background-color: #2d1b4e;
    color: #fff;
    border-color: #2d1b4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(45, 27, 78, 0.2);
}

.btn-page.active {
    background-color: #d4a259;
    color: #fff;
    border-color: #d4a259;
}

/* About Page */
.about-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 40px;
}

.about-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2d1b4e;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.contact-info {
    background-color: #f5f5f5;
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 15px;
}

.highlight {
    background-color: #fff3e0;
    border-left: 4px solid #d4a259;
    padding: 15px 20px;
    margin-top: 20px;
    font-weight: 600;
    color: #2d1b4e;
}

/* Contact Form */
.contact-form {
    margin-top: 20px;
}

.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s;
    resize: vertical;
}

.contact-form textarea:focus {
    outline: none;
    border-color: #d4a259;
}

.contact-form .btn {
    margin-top: 10px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #d4a259;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #d4a259;
}

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #aaa;
    margin-bottom: 15px;
}

.responsible-gaming {
    font-weight: 600;
    color: #d4a259 !important;
}

.responsible-gaming a {
    color: #d4a259;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 13px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    font-weight: 700;
    color: #888;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #2d1b4e;
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2d1b4e;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #d4a259;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
}

/* Age Verification Modal */
.age-modal .modal-content {
    text-align: center;
    max-width: 450px;
}

.age-modal-content h2 {
    color: #2d1b4e;
    margin-bottom: 20px;
}

.age-modal-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.age-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.age-modal-buttons .btn {
    flex: 1;
    max-width: 180px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .events-section {
        padding: 25px;
    }

    .about-content {
        padding: 30px;
    }

    .about-section h2 {
        font-size: 26px;
    }

    .modal-content {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 400px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .event-card {
        padding: 20px;
    }

    .event-title {
        font-size: 18px;
    }

    .about-content {
        padding: 20px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .age-modal-buttons {
        flex-direction: column;
    }

    .age-modal-buttons .btn {
        max-width: 100%;
    }
}


.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 30px 0 20px 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-logos a {
  display: inline-block;
  text-decoration: none;
}

.logo-placeholder {
  width: 140px;
  height: 50px;
  background: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.logo-placeholder:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}


.footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: translateY(-3px);
}
