/* Основные стили страницы */
/*body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    padding: 20px;
    margin: 0;
}*/

/* Заголовок страницы */
/*h1 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}*/

/* Контейнер для экскурсий */
.excursion-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
}

/* Стиль каждой экскурсии */
.excursion {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /* max-width: 300px; */
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease-in-out;
    position: relative;
}

/* Эффект при наведении */
.excursion:hover {
    transform: translateY(-5px);
}

.excursion .type {
    position: absolute;
    color: white;
    left: 40px;
    top: 30px;
    font-size: 17px;
    z-index: 1;
}

.excursion .duration-movement {
    position: absolute;
    z-index: 1;
    color: white;
    font-size: 17px;
    top: 240px;
    right: 30px;
}

/* Фото экскурсии */
.excursion img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
    height: 250px;
    filter: brightness(0.8);
}

/* Заголовок экскурсии */
.excursion h2 {
    font-size: 1.5rem;
    color: #333;
    margin: 10px 0;
}

/* Описание экскурсии */
.excursion p {
    font-size: 1rem;
    color: #666;
    margin: 10px 0;
}

/* Ссылки */
.excursion a {
    color: #007bff;
    text-decoration: none;
}

.excursion a:hover {
    text-decoration: underline;
}

/* Блок с ценой и рейтингом */
.excursion .info {
    margin-top: 10px;
    font-size: 1rem;
    color: #333;
}

/* Изображение гида */
.excursion .guide-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
    margin-bottom: 0;
}

/* Гид */
.excursion .guide {
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

/* Цена */
.excursion .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e95924;
}

.excursion-lucky-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    outline: none;
}

.excursion-lucky-button:hover {
    background: linear-gradient(45deg, #feb47b, #ff7e5f);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.excursion-lucky-button:active {
    transform: translateY(1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.btn-excursion-lucky-button {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}


.excursion-sort-form>div {
    position: relative;
    height: 50px;
}

.excursion-sort-form select {
    right: 0;
    position: absolute;
    color: #7f8389;
}