.lazy-load-placeholder {
    width: 100%;
    height: 300px;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
}
h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.price-header {
    display: flex;
    align-items: baseline;
    white-space: nowrap;
    font-size: 24px;
    line-height: 1;
}
.price-header small {
    font-size: 12px;
    padding: 0 5px;
}
.price-header strong {
    font-size: 28px;
}

.navbar {
    margin-bottom: 20px;
    background-color: #5b98ad;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #ffffff !important;
}

.card {
    border: none;
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.05);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #343a40;
}

.card-text strong {
    color: #3498db;
}

.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.filter-sort-container {
    background-color: #e9ecef;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.gallery-item {
    flex: 0 0 calc(33.333% - 10px);
    margin-bottom: 15px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #c2d5e1;
}

.navbar {
    position: relative;
    height: 80px;
}

.navbar .container-fluid {
    justify-content: center;
}

.navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.logo {
    max-height: 80px;
    width: auto;
    max-width: 100%;
}
.modal-title {
    font-weight: bold;
}
.resort-stars {
    color: #ff7300;
    font-size: 10pt;
    letter-spacing: -1px;
}
.rooms {
    --bs-gutter-x: 0.5rem;
}
.resort-name {
    font-family: Poppins;
    font-size:20pt;
}
.card-footer {
    padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
    color: inherit; 
    background-color: inherit;
    border-top: 0;
}


.placeholder-card .card {
    background-color: #f0f0f0;
}

.placeholder-image {
    width: 100%;
    height: 200px; /* Adjust as needed */
    object-fit: cover;
}

.placeholder-text {
    height: 20px;
    margin-bottom: 10px;
    background-color: #e0e0e0;
    border-radius: 4px;
}

.placeholder-text:last-child {
    width: 80%;
}

.spinner-overlay, .spinner {
    display: none;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 991px) {
    .navbar-brand {
        position: static;
        transform: none;
    }
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    }

    .gallery img {
        height: 60px;
    }
    .price-header {
        font-size: 20px;
    }
    .price-header small {
        font-size: 10px;
    }
    .price-header strong {
        font-size: 24px;
    }
}
@media (max-width: 480px) {
    .price-header {
        font-size: 16px;
    }
    .price-header small {
        font-size: 8px;
    }
    .price-header strong {
        font-size: 20px;
    }
}