﻿/* --- Package Section --- */
.package-details .main-img {
    aspect-ratio: 2 / 1;
    object-fit: cover;
    border-radius: 5px 5px 5px 5px;
}

/* Apply only if .package-details contains a table */
/*table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    margin: 1rem 0;
}

table,
th,
td {
    border: 1px solid color-mix(in srgb, var(--dark-color), transparent 30%);
}

th,
td {
    padding: 10px;
    text-align: left;
}

th {
    background: color-mix(in srgb, var(--primary-color), transparent 85%);
    font-weight: bold;
}*/

.package-details table td,
.package-details table th {
    padding: .75rem;
    background-color: var(--light-color);
}

.category-badge {
    font-size: 14px;
    border-radius: 5px 5px 5px 5px;
    background-color: var(--secondary-color);
    color: var(--default-light-color);
    padding: 6px 10px;
}

/* --- Gallery --- */
.gallery-wrapper {
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover */
.preview-link:hover .gallery-img {
    transform: scale(1.08);
    filter: brightness(0.80);
}

.inquiry-form {
    padding: 20px;
    border-radius: 5px 5px 5px 5px;
    background-color: var(--light-color);
}

    .inquiry-form label {
        font-size: 12px !important;
    }

    .inquiry-form input,
    .inquiry-form textarea {
        font-size: 14px !important;
    }
