 .columns {
        display: flex;
        /* flex-wrap: wrap; */
        padding: 0 30px;
        width: 100%;
        -moz-column-gap: 30px;
        column-gap: 30px;
        row-gap: 30px;
        --columns: 12;
        transition: padding 0.2s var(--easing);
    }


    .split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }


    .split .text-half,
    .split .image-half {
        width: 100%;
        height: 100%;
    }


    .split .image-half img {
        width: 100%;
        height: auto;
        display: block;
    }


    @media (max-width: 767.98px) {
        .split.flip {
            grid-template-columns: 1fr;
            /* Stack items vertically */
        }

        .split.flip .image-half {
            order: 1;
        }

        .split.flip .text-half {
            order: 2;
        }
    }

    @media (min-width: 769px) {
        section.split.flip .text-half {
            grid-area: 1 / 1 / 2 / 2;
        }
    }

    section.module.padding-bottom {
        padding-bottom: 80px;
        padding-top:80px;
    }

    


    .with-filter {
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    .with-filter::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 32, 20, 0.3);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: -1;
        pointer-events: none;
    }
    section.with-filter:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 2;
}
.module-1 {
        margin-bottom: 0px !important;
}
 @media (min-width: 768px) {
   section.split {
    min-height: 75svh;
   }
}
 /* Reservation Popup Styles */
.reservation-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reservation-popup.active {
    opacity: 1;
}

.popup-content {
    background: #fff;
    padding: 40px 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.reservation-popup.active .popup-content {
    transform: scale(1);
}

.popup-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.popup-content.success .popup-icon {
    color: #28a745;
}

.popup-content.error .popup-icon {
    color: #dc3545;
}

.popup-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.popup-content.success h3 {
    color: #28a745;
}

.popup-content.error h3 {
    color: #dc3545;
}

.popup-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.popup-close-btn {
    background: #2c3e50;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.popup-close-btn:hover {
    background: #1a252f;
}

.popup-content.success .popup-close-btn {
    background: #28a745;
}

.popup-content.success .popup-close-btn:hover {
    background: #218838;
}

.popup-content.error .popup-close-btn {
    background: #dc3545;
}

.popup-content.error .popup-close-btn:hover {
    background: #c82333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-content {
        padding: 30px 25px;
        width: 95%;
    }
    
    .popup-icon {
        font-size: 50px;
    }
    
    .popup-content h3 {
        font-size: 24px;
    }
    
    .popup-content p {
        font-size: 14px;
    }
}
