.adventures-section {
    position: relative;
    padding: 80px 0;
    background-color: var(--bg-light);
}

.adventures-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/pattern-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.adventures-section .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.adventures-section .section-header h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.adventures-section .section-header h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.adventure-card {
    background-color: var(--bs-body-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.adventure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.adventure-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.adventure-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.adventure-card:hover .adventure-img img {
    transform: scale(1.1);
}

.adventure-price {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    z-index: 2;
}

.adventure-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.adventure-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.adventure-description {
    color: var(--bs-secondary-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

.adventure-btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.adventure-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.3);
    color: white;
}

.terms-conditions {
    font-size: 0.8rem;
    color: var(--bs-secondary-color);
    margin-top: 15px;
}

.terms-conditions ul {
    padding-right: 20px;
    margin-top: 5px;
}

.terms-conditions li {
    margin-bottom: 3px;
}

/* Owl Carousel Styles */
.events_wrap .owl-stage {
    display: flex;
}

.events_wrap .owl-item {
    display: flex;
    height: auto;
}

.events_wrap .adventure-card {
    width: 100%;
    margin: 10px;
    height: 450px; /* Fixed height for all cards */
}

.events_wrap .adventure-description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Custom Navigation Buttons */
.adventures-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.adventures-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.adventures-nav-btn:hover {
    background-color: var(--primary);
    color: white;
}

@media (max-width: 991.98px) {
    .adventure-card {
        margin-bottom: 30px;
    }
}
