.info-title {
    text-align: center;
    margin-bottom: 5rem;
}

.info-text h3 {
    margin-top: 0rem;
}

.info-text p {
    line-height: 1.6;
}

.info-item {
    position: relative;
    /* icon width (2.25rem) + gap (1rem) */
    padding-left: calc(2.25rem + 1rem);
    margin: 1.5rem 0 1.5rem 0;
}

/* Pseudo icon */
.info-item::before {
    content: "";
    position: absolute;
    left: 0;
    /* vertically center the icon against the text */
    top: 50%;
    transform: translateY(-50%);
    width: 2.25rem;
    height: 2.25rem;

    /* hidden by default; only show for items with an icon-... class */
    display: none;
    background-color: var(--icon-color-simple);

    /* mask sizing for modern browsers */
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    pointer-events: none;
}

/* all icons, rename if wished*/ 
.info-item.icon-vehicle::before {
    display: block;
    mask: url("/assets/img/icons/icon_vehicle.svg") no-repeat center / contain;
    -webkit-mask: url("/assets/img/icons/icon_vehicle.svg") no-repeat center / contain;
}

.info-item.icon-helicopter::before {
    display: block;
    mask: url("/assets/img/icons/icon_helicopter.svg") no-repeat center / contain;
    -webkit-mask: url("/assets/img/icons/icon_helicopter.svg") no-repeat center / contain;
}

.info-item.icon-show::before {
    display: block;
    mask: url("/assets/img/icons/icon_show.svg") no-repeat center / contain;
    -webkit-mask: url("/assets/img/icons/icon_show.svg") no-repeat center / contain;
}

.info-item.icon-simulator::before {
    display: block;
    mask: url("/assets/img/icons/icon_simulator.svg") no-repeat center / contain;
    -webkit-mask: url("/assets/img/icons/icon_simulator.svg") no-repeat center / contain;
}

.info-item.icon-weapons::before {
    display: block;
    mask: url("/assets/img/icons/icon_weapons.svg") no-repeat center / contain;
    -webkit-mask: url("/assets/img/icons/icon_weapons.svg") no-repeat center / contain;
}

.info-item.icon-camp::before {
    display: block;
    mask: url("/assets/img/icons/icon_camp.svg") no-repeat center / contain;
    -webkit-mask: url("/assets/img/icons/icon_camp.svg") no-repeat center / contain; /* fixed typo */
}

.info-item.icon-kids::before {
    display: block;
    mask: url("/assets/img/icons/icon_kids.svg") no-repeat center / contain;
    -webkit-mask: url("/assets/img/icons/icon_kids.svg") no-repeat center / contain;
}

.info-item.icon-info::before {
    display: block;
    mask: url("/assets/img/icons/icon_info.svg") no-repeat center / contain;
    -webkit-mask: url("/assets/img/icons/icon_info.svg") no-repeat center / contain;
}

.info-item.icon-food::before {
    display: block;
    mask: url("/assets/img/icons/icon_food.svg") no-repeat center / contain;
    -webkit-mask: url("/assets/img/icons/icon_food.svg") no-repeat center / contain;
}

.info-item.icon-dessert::before {
    display: block;
    mask: url("/assets/img/icons/icon_dessert.svg") no-repeat center / contain;
    -webkit-mask: url("/assets/img/icons/icon_dessert.svg") no-repeat center / contain;
}


.map-container {
    position: relative;
    width: 100%;
    min-height: 400px;
    height: 50vh;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
    margin-top: 1.5rem;
    overflow: hidden;
}

.info-slider {
    width: 100%;
    /*max-height: 800px;*/
}

.slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 0.75rem;
}

.slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slider .slide.is-active {
    opacity: 1;
}

@media (min-width: 800px) {
    .info-section {
        flex-direction: row;
        align-items: flex-start;
    }

    .info-text,
    .info-slider {
        flex: 1 1 0;
    }
}
