
.columns {
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
    width: 100%;
    column-gap: 30px;
    row-gap: 10px;
    --columns: 12;
    transition: padding 0.2s var(--easing);
}




@media (max-width: 767px) {
    .columns {
        --columns: 12 !important;
    }
    .col {
        --span: 12 !important;
    }
    
    .col {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100%;
    max-width: 100%;
   }
   .media-card {
    margin-bottom: 20px;
  }
  .media-card.short {
    height: 75vh;
}
  
}
@media (min-width: 768px) {
    section.split-22 {
        min-height: 100svh;
    }
}

/* 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;
    }
}

