/* --- Adventures Wrappers ---------------------------------------------------------------------- */

.adventures {
	position: relative;
	padding: 100px 0;
	background: url(../assets/images/topo-white-trans.svg) center / cover no-repeat,
		linear-gradient(135deg, rgba(110, 156, 81, 1) 0%, rgba(81, 114, 59, 1) 51%, rgba(28, 84, 31, 1) 100%);
}

.adventures .section-header {
	position: relative;
	margin-top: 32px;
	z-index: 0;
}

.adventures-wrapper {
	max-width: 1600px;
	position: relative;
	margin: 0 auto;
	overflow: hidden;
}

/* --- Modal ------------------------------------------------------------------------------------ */

.adventure-modal.modal-content {
	max-width: 1200px;
}

.adventure-modal-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.adventure-modal-text {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.adventure-modal-image {
	padding: 10px;
}

.adventure-modal-image img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 18px;
}

@media (max-width: 900px) {
	.adventure-modal {
		padding: 28px;
	}

	.adventure-modal-content {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.adventure-modal-image {
		order: -1;
	}
}

.adventure-modal-nav {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 32px;
}

.adventure-modal-nav button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}



/* --- Slider Navigation ------------------------------------------------------------------------ */

.adventures-slider .swiper-button-next::after,
.adventures-slider .swiper-button-prev::after {
	content: none !important;
}

.adventures-slider .swiper-button-prev,
.adventures-slider .swiper-button-next {
	position: absolute;
	top: -180px;
	width: 50px;
	height: 50px;
	opacity: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.3);
	backdrop-filter: blur(12px) saturate(150%);
	box-shadow: 0 10px 30px rgba(0,24,7,0.3);
	border-radius: 50%;
	color: var(--white);
}

.adventures-slider .swiper-button-next {
	right: 25px;
}

.adventures-slider .swiper-button-prev {
	left: 25px;
}

@media (max-width: 1330px) {
	.adventures-slider .swiper-button-next {
		right: 10px;
	}

	.logo-gallery-slider .swiper-button-prev {
		left: 10px;
	}
}

/* --- New Stuff -------------------------------------------------------------------------------- */

.adventures-slider {
	position: relative;
	height: 380px;
	width: 130%;
	left: -15%;
}
@media (max-width: 640px) {
	.adventures-slider {
		width: 200%;
		left: -50%;
	}
}

.adventure-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}

.adventure-slide img {
	display: block;
	width: 82%;
	max-width: 340px;
	height: auto;
	margin: 0 auto;
}

.adventure-slide.swiper-slide img {
	transform: scale(1.0);
	transition: transform 0.1s ease;
}
.adventure-slide.swiper-slide:hover img {
	transform: scale(1.05);
}

.adventures-slider .slider-nav-wrap {
	padding: 0;
}

.adventures-fancybox .f-button.is-arrow {
	background: var(--agave-dark);
	color: var(--white);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	opacity: 1;
}

.adventures-fancybox .f-button.is-arrow svg {
	width: 24px;
	height: 24px;
}

.adventures-fancybox .fancybox__thumbs {
	display: none;
}

.adventure-badge-link {
	display: block;
	width: 100%;
}

/* ---------------------------------------------------------------------------------------------- */
