﻿/* Code for new pages  */

/* event-location-banner variant */
.banner-section.event-location-banner .banner-image:before {
    background: linear-gradient( 180deg, rgba(16, 24, 40, 0.7) 0%, rgba(16, 24, 40, 0.5) 100% );
}

.banner-section.event-location-banner .banner-content {
    text-align: left;
    max-width: 850px;
    padding-top: 100px;
}

.banner-section.event-location-banner .main-title {
    margin-bottom: 24px;
}

    .banner-section.event-location-banner .main-title h1 {
        font-size: 48px;
        line-height: 48px;
    }

.banner-section.event-location-banner .banner-text {
    margin-bottom: 32px;
    max-width: 670px;
}

    .banner-section.event-location-banner .banner-text p {
        font-family: "AvenirLTStdBook";
        font-size: 20px;
        line-height: 26px;
        margin: 0;
    }

@media (max-width: 767px) {
    .event-location-banner {
        height: 700px;
    }

    .banner-section.event-location-banner .banner-content {
        padding-top: 60px;
    }

    .banner-section.event-location-banner .main-title h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .banner-section.event-location-banner .banner-text p {
        font-size: 16px;
        line-height: 1.5;
    }

    .join-club-buttons {
        flex-direction: column;
        gap: 15px;
    }

        .join-club-buttons .btn {
            width: 100%;
            margin: 0 !important;
        }
}

/* google-reviews */
.google-reviews {
    margin-top: 10px;
}

    .google-reviews .reviews-content {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .google-reviews .rating {
        font-family: "LatoBold";
        font-size: 18px;
        line-height: 22px;
        color: #ffffff;
        opacity: 90;
    }

    .google-reviews .stars {
        display: flex;
        gap: 4px;
    }

    .google-reviews .stars {
        color: #f7ad19;
        font-size: 16px;
    }

    .google-reviews .review-text {
        font-family: "AvenirLTStdBook";
        font-size: 14px;
        line-height: 18px;
        color: #ffffff;
        opacity: 90;
    }
/* google-reviews */
/* google-reviews */
/* banner */

/* onze-zalen-section */
.onze-zalen-section {
    padding: 80px 0;
}

.onze-zalen-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

    .onze-zalen-header .btn-filter {
        background: #0065a5;
        border-color: #0065a5;
        color: #ffffff;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .onze-zalen-header .btn-filter:hover {
            background-color: #0065a5;
            color: #ffffff;
        }

        .onze-zalen-header .btn-filter .filter-count {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #ffffff;
            color: #00436e;
            min-width: 24px;
            height: 24px;
            padding: 0 8px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            margin-left: 5px;
        }

    .onze-zalen-header .filter-description p {
        margin: 0;
        color: #707070;
        font-family: "AvenirLTStdBook";
        font-size: 16px;
        line-height: 24px;
        max-width: 500px;
    }

    .onze-zalen-header .filter-description a {
        color: #1a5f7a;
        text-decoration: underline;
    }

.onze-zalen-title {
    margin-bottom: 30px;
}

    .onze-zalen-title .section-label {
        display: block;
        font-family: "LatoBold";
        font-size: 14px;
        letter-spacing: 2px;
        color: #6a7282;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .onze-zalen-title h2 {
        font-family: "AvenirHeavy";
        font-weight: 400;
        font-size: 30px;
        color: #364153;
        margin: 0;
    }

.room-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-cards-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


.room-card {
    position: relative;
    overflow: hidden;
}

    .room-card .room-card-image {
        position: relative;
        width: 100%;
        aspect-ratio: 4/3;
    }

        .room-card .room-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

    .room-card:hover .room-card-image img {
        transform: scale(1.05);
    }

    .room-card .room-card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px;
        transition: background 0.3s ease;
    }

    .room-card:hover .room-card-overlay {
        background: rgba(0, 0, 0, 0.1);
    }

    .room-card .room-card-overlay h3 {
        color: #ffffff;
        font-family: "AvenirHeavy";
        font-size: 24px;
        text-transform: uppercase;
        margin-bottom: 5px;
        letter-spacing: 1px;
    }

    .room-card .room-card-overlay .capacity {
        color: #ffffff;
        font-family: "AvenirLTStdBook";
        font-size: 16px;
    }

@media (max-width: 991px) {
    .room-cards-grid, room-cards-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .onze-zalen-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .room-cards-grid, room-cards-grid-2 {
        grid-template-columns: 1fr;
    }
}
/* onze-zalen-section */

/* vergaderen-section */
.vergaderen-section {
    background: url("/_img/zalen/vergaderen_bij_igc.jpg") no-repeat !important;
    background-size: cover !important;
}

/* contact-cta-section */
.contact-cta-section {
    background-color: #08101c;
    padding: 100px 0;
    color: #ffffff;
}

    .contact-cta-section .section-header {
        margin-bottom: 60px;
    }

    .contact-cta-section .contact-methods {
        margin-bottom: 60px;
    }

    .contact-cta-section .method-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .contact-cta-section .icon-box {
        width: 80px;
        height: 80px;
        background-color: #1a212d;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
        border-radius: 4px;
    }

        .contact-cta-section .icon-box .svg-inline--fa {
            height: 2rem !important;
            color: #ffffff;
        }

    .contact-cta-section .method-item h4 {
        font-size: 20px;
        margin: 0;
        color: #ffffff;
    }

    .contact-cta-section .contact-link {
        font-size: 16px;
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.3s;
    }

        .contact-cta-section .contact-link:hover {
            color: #ffffff;
        }

    .contact-cta-section .cta-buttons .btn {
        min-width: 220px;
        padding: 15px 30px;
        border-radius: 0;
        font-size: 16px;
    }

    .contact-cta-section .btn-white {
        background-color: #ffffff;
        color: #08101c;
        border: 1px solid #ffffff;
    }

        .contact-cta-section .btn-white:hover {
            background-color: transparent;
            color: #ffffff;
        }

    .contact-cta-section .btn-outline-white {
        background-color: transparent;
        color: #ffffff;
        border: 1px solid #ffffff;
    }

        .contact-cta-section .btn-outline-white:hover {
            background-color: #ffffff;
            color: #08101c;
        }

@media (max-width: 767px) {
    .contact-cta-section .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

        .contact-cta-section .cta-buttons .btn {
            width: 100%;
            min-width: unset;
        }
}

@media (max-width: 767px) {
    .contact-cta-section .contact-methods .row > div {
        margin-bottom: 40px;
    }

        .contact-cta-section .contact-methods .row > div:last-child {
            margin-bottom: 0;
        }
}
/* contact-cta-section */

/* logo-slider-section */
.logo-slider-section {
    background-color: #00436e;
    padding: 80px 0;
    overflow: hidden;
}

.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-bottom: 40px;
}

.marquee-content {
    display: inline-flex;
    padding-left: 0;
    width: max-content;
    gap: 80px;
}

.marquee-wrapper.marquee-left .marquee-content {
    animation: scroll-left 60s linear infinite;
}

.marquee-wrapper.marquee-right .marquee-content {
    animation: scroll-right 60s linear infinite;
}

.marquee-content span {
    display: inline-block;
    font-family: "AvenirLTStdBook";
    font-size: 20px;
    color: #ffffff;
    opacity: 0.7;
    margin: 0;
    text-transform: capitalize;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }
    /* -50% because duplicate content is expected */
}

@keyframes scroll-right {
    0% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(0);
    }
}
/* logo-slider-section */

/* Filter Sidebar */
.filter-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px; /* Slightly wider as per design */
    background-color: #ffffff;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
}

    .filter-sidebar.open {
        transform: translateX(0);
    }

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8); /* Keeping it lighter/cleaner */
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

    .sidebar-overlay.open {
        opacity: 1;
        visibility: visible;
    }

.sidebar-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eeeeee;
}

    .sidebar-header .tab-active {
        font-family: "AvenirHeavy";
        font-size: 18px;
        color: #00436e; /* Brand blue */
        border-bottom: 2px solid #00436e;
        padding-bottom: 5px;
    }

    .sidebar-header .close-sidebar {
        cursor: pointer;
        font-size: 20px;
        color: #404040;
    }

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.filter-group {
    margin-bottom: 30px;
    border: none;
}

    /* Filter Accordion Styles */
    .filter-group .accordion-item {
        border: none;
        background-color: transparent;
    }

    .filter-group .accordion-button {
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        padding-top: 10px;
        font-family: "AvenirLTStdBook";
        font-size: 18px;
        color: #08101c;
        border: none;
        border-top: 1px solid #eeeeee !important; /* Force border top as requested */
        border-bottom: none;
        border-radius: 0;
    }

        .filter-group .accordion-button:not(.collapsed) {
            background-color: transparent;
            color: #08101c;
            box-shadow: none;
        }

        .filter-group .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23404040'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .filter-group .accordion-button:focus {
            box-shadow: none;
        }

    .filter-group .accordion-body {
        padding: 10px 0 30px;
    }

    /* Header Left adjustments inside button */
    .filter-group .accordion-button .header-left {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .filter-group .accordion-button .header-left i {
            color: #404040;
        }

.range-slider-container {
    padding: 10px 0;
}

.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #f2f1f1;
    border-radius: 6px;
    outline: none;
    border: 1px solid gray; /* Inner white circle effect */
}

    .range-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: #00436e;
        cursor: pointer;
    }

.range-values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-family: "AvenirLTStdBook";
    font-size: 14px;
    color: #707070;
}

.filter-divider {
    border-top: 1px solid #eeeeee;
    margin: 20px 0 30px;
}

.radio-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

    .radio-item input {
        display: none;
    }

.radio-circle {
    width: 24px;
    height: 24px;
    border: 1px solid #707070;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.radio-item input:checked + .radio-circle {
    border-color: #00436e;
}

    .radio-item input:checked + .radio-circle:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 12px;
        height: 12px;
        background-color: #00436e;
        border-radius: 50%;
    }

.radio-label {
    font-family: "AvenirHeavy";
    font-size: 16px;
    color: #08101c;
}

.sidebar-footer {
    padding: 20px 30px;
    border-top: 1px solid #eeeeee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .sidebar-footer .clear-filters {
        font-family: "AvenirLTStdBook";
        font-size: 14px;
        color: #00436e;
        text-decoration: underline;
    }

    .sidebar-footer .active-count {
        font-family: "AvenirLTStdBook";
        font-size: 14px;
        color: #707070;
    }

    .sidebar-footer .apply-btn {
        background-color: #00436e;
        color: #ffffff;
        padding: 10px 20px;
        border: none;
        font-family: "AvenirHeavy";
        font-size: 16px;
        cursor: pointer;
        border-radius: 4px;
    }

        .sidebar-footer .apply-btn:hover {
            background-color: #003355;
        }
/* Filter Sidebar End */

/* Sub-Page Styles */
.sub-title-project {
    font-size: 64px !important;
    line-height: 72px !important;
}

@media (max-width: 767px) {
    .sub-title-project {
        font-size: 42px !important;
        line-height: 50px !important;
    }
}

    /* Back Navigation Bar */
    .back-nav-bar {
        background: #ffffff;
        padding: 20px 0;
        border-bottom: 1px solid #eeeeee;
        margin-bottom: 20px;
    }

        .back-nav-bar .back-link {
            color: #0a2e3d;
            font-size: 16px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: color 0.3s ease;
        }

            .back-nav-bar .back-link:hover {
                color: #00436e;
            }

            .back-nav-bar .back-link .arrow-left {
                font-size: 14px;
                transition: transform 0.3s ease;
            }

            .back-nav-bar .back-link:hover .arrow-left {
                color: #00436e;
                transform: translateX(-5px);
            }

    /* Sub-Page Hero */
    .banner-section.sub-page-hero .banner-content {
        text-align: left;
        max-width: 800px;
        padding-top: 100px;
    }

    .sub-page-hero .feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .sub-page-hero .feature-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 18px;
            margin-bottom: 20px;
            color: #ffffff;
        }

            .sub-page-hero .feature-list li .icon-circle {
                width: 32px;
                height: 32px;
                background-color: #00436e; /* Blue circle */
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-shrink: 0;
            }

                .sub-page-hero .feature-list li .icon-circle i {
                    font-size: 14px;
                    color: #ffffff;
                }

    .sub-page-hero .hero-location {
        font-size: 18px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: #ffffff;
    }

    /* Room Details Section */

    .room-details-section {
        padding: 20px 0;
    }

        .room-details-section .block-title h2 {
            font-size: 24px;
            color: #101828;
        }

        .room-details-section .block-title h3 {
            font-size: 24px;
            color: #101828;
            margin-bottom: 20px;
        }

    .room-description p {
        font-size: 16px;
        line-height: 26px;
        color: #364153;
    }

    .check-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .check-list li {
            position: relative;
            margin-bottom: 15px;
            font-size: 16px;
            color: #364153;
        }

            .check-list li i {
                position: absolute;
                left: 0;
                top: 4px;
                color: #1a4d5c; /* Brand Blue */
                font-size: 14px;
            }

    /* Sticky Sidebar */
    .room-sidebar {
        background-color: #f9fafb; /* Light Gray */
        padding: 30px;
        border-radius: 4px; /* Optional slight radius */
    }

        .room-sidebar h4 {
            font-size: 20px;
            color: #101828;
            margin-bottom: 20px;
        }

    .spec-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e0e0e0;
    }

        .spec-item:last-child {
            border-bottom: none;
        }

        .spec-item .icon {
            width: 24px;
            margin-right: 15px;
            color: #0065a5;
            font-size: 18px;
            margin-top: 2px;
        }

        .spec-item .spec-detail {
            display: flex;
            flex-direction: column;
        }

            .spec-item .spec-detail .label {
                font-size: 14px;
                color: #707070;
                margin-bottom: 4px;
            }

            .spec-item .spec-detail .value {
                font-size: 16px;
                color: #101828;
                font-weight: 500;
            }

    .price-block .price-label {
        display: block;
        font-size: 14px;
        color: #707070;
        margin-bottom: 5px;
    }

    .price-block .price-value {
        font-size: 28px;
        color: #101828;
        font-weight: semibold;
    }

    .room-sidebar .btn-primary {
        background-color: #0065a5;
        border-color: #0065a5;
        font-family: "AvenirHeavy";
        padding: 12px 20px;
        font-size: 16px;
        border-radius: 0; /* Square button as per design? Or standard radius? */
    }

        .room-sidebar .btn-primary:hover {
            background-color: #0065a5;
            border-color: #0065a5;
        }

    /* Impression Section */
    .impression-img {
        height: 250px;
        object-fit: cover;
        border-radius: 0;
        width: 100%;
    }

    /* Reviews Section */
    .review-card {
        background-color: #f8f9fa;
        padding: 30px;
        border-radius: 0;
        position: relative;
        margin-bottom: 20px;
    }

        .review-card .stars {
            color: #ffc107;
            font-size: 14px;
            display: flex;
            gap: 4px;
            margin-bottom: 10px;
        }

        .review-card .review-quote-icon {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 40px;
            color: #e6e8eb; /* Very light gray */
            line-height: 1;
        }

    .review-text p {
        font-style: italic;
        font-size: 16px;
        line-height: 26px;
        color: #364153;
        margin-bottom: 0;
        position: relative;
        z-index: 1;
        margin-top: 20px;
    }

    .review-author .author-name {
        display: block;
        font-size: 16px;
        color: #101828;
        margin-bottom: 2px;
        padding-top: 20px;
        border-top: 1px solid #e0e0e0;
    }

    .review-author .author-role {
        display: block;
        font-size: 14px;
        color: #6a7282;
    }
