body {
    font-family: 'Roboto', sans-serif;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.cities-dropdown:hover .cities-menu {
    display: block;
}

.aspect-ratio-16-9 {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
}

.aspect-ratio-16-9 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.carousel-button.left {
    left: 10px;
}

.carousel-button.right {
    right: 10px;
}

.rating__star {
    cursor: pointer;
    font-size: 24px;
    color: #ccc;
    /* Default color for unfilled stars */
    transition: color 0.3s ease;
    /* Smooth transition for color change */
}

.rating__star.filled {
    color: gold;
    /* Color for filled stars */
    text-shadow: 0 0 10px gold, 0 0 20px gold;
    /* Glowing effect */
}

.review {
    border-top: 1px solid #eaeaea;
    padding: 10px 0;
}

.review-date {
    font-size: 12px;
    color: #888;
}



/* Modal Styles */
#imageModal {
    display: none;
    /* Hidden by default */
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.7);
}

.aspect-w-16 {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
}

.aspect-h-9 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.form-container {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    position: relative;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    color: red;
    cursor: pointer;
}

input {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border: 2px solid transparent;
    border-radius: 5px;
    font-size: 16px;
    background: #fff;
    outline: none;
    transition: border-color 0.3s ease;
}

input:focus {
    border: 2px solid #4fcf70;
}

.btn-1 {
    cursor: pointer;
    color: white;
    margin: 0 auto;
    width: 140px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
    padding: 0.75rem;
    background: #4fcf70;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-1:hover {
    background: #3a9e5c;
}

.hidden {
    display: none;
}