
/* adventure */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
}


.adventure-page {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    color: #333;
}

/* Ensure the background image covers the area responsively */
.adventure-image {
    position: absolute;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(131, 131, 131, 0) 70%, rgb(0, 0, 0) 100%), 
    url('https://res.cloudinary.com/dgdbgblvb/image/upload/v1726631988/WhatsApp_Image_2024-09-18_at_9.36.29_AM_awze83.jpg');
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;

}

.nature-image{
    position: absolute;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(131, 131, 131, 0) 70%, rgb(0, 0, 0) 100%), 
    url('https://res.cloudinary.com/dgdbgblvb/image/upload/v1732029164/DJI_0212_cvgq7w.jpg');
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;

}

.culture-image{
    position: absolute;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(131, 131, 131, 0) 70%, rgb(0, 0, 0) 100%), 
    url('https://res.cloudinary.com/dgdbgblvb/image/upload/v1732028718/IMG_1356_wmkwat.jpg');
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;

}

.wellness-image{
    position: absolute;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(131, 131, 131, 0) 70%, rgb(0, 0, 0) 100%), 
    url('https://res.cloudinary.com/dga2mpvuf/image/upload/v1732517233/IMG_1073_1_bboezp.jpg');
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;

}

.adventure{
    margin: auto;
    display: flex;
    padding: 5%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.adventure-section {
    position: relative;
    max-width: 700px;
    justify-content: space-between;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 380px;
    display: block;
    object-fit: cover; /* Ensures the image fills the area without distortion */
    overflow: hidden;

}

.adventure-section .content {
    padding: 20px;
    padding: 2%;
    justify-content: center;
}

.adventure-section h2 {
    font-family: "Lumanosimo", cursive;
    font-weight: 600;
    font-style: normal;
    font-size: 28px;
    color: #3e5e40;
    margin: 15px;
}

.adventure-section p {
    font-size: 18px;
    line-height: 1.3;
    color: #333;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.intro-quote {
    width: 70%;
    text-align: center; /* Center the text horizontally */
    display: flex;
    justify-content: center; /* Center the element horizontally */
    align-items: center; /* Center the element vertically */
    margin: 2% auto; /* Add auto margin to center the element */
}

.intro-quote p{
    font-family:cursive;
    font-size: 2.4rem;
    color: #2c522d;
    font-weight: 500;
}



.explore-btn {
    background-color: #5fbb4c;
    color: white;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
    margin-bottom: 10%;
    border-bottom: 3px solid rgb(4, 126, 59);
}

.explore-btn:hover {
    background-color: #3c6942;
}

/* Media Queries for Responsiveness */

@media (max-width: 768px) {
    .image-container img {
        height: 300px; /* Adjust image height for smaller screens */
    }

    .adventure-section h2 {
        font-size: 24px; /* Adjust heading size */
    }

    .adventure-section p {
        font-size: 16px; /* Adjust paragraph size */
    }

    .explore-btn {
        padding: 10px 20px; /* Reduce button padding */
        font-size: 14px; /* Adjust button font size */
    }
    .intro-quote p{
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .adventure-section h2 {
        font-size: 20px; /* Further adjust heading size */
    }

    .adventure-section p {
        font-size: 14px; /* Further reduce paragraph size */
    }

    .intro-quote p{
        font-size: 1.4rem; /* Smaller quote font size */
    }

    .explore-btn {
        padding: 8px 15px; /* Further reduce button padding */
        font-size: 12px; /* Adjust button font size for smaller screens */
    }
}

