/*
Theme Name: 25 Hours Holidays
Theme URI: https://25hoursholidays.com/
Author: 25 Hours Holidays
Author URI: https://25hoursholidays.com/
Description: Lightweight custom travel theme with native tour management, AJAX filters and enquiry handling.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: hours25
*/

/* About page */



/* ==========================================
   EXTRA HTML CONTENT - READ MORE
   ========================================== */

.tour-extra-content {
    margin-top: 50px;
    margin-bottom: 50px;
}

.tour-extra-content__wrapper {
    position: relative;
}

.tour-extra-content__body {
    max-height: 300px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.6s ease;
}

/* Fade at bottom when collapsed */
.tour-extra-content__body:not(.expanded)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 90px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,1)
    );
    pointer-events: none;
}

/* Expanded */
.tour-extra-content__body.expanded {
    max-height: 10000px;
}

/* Button */
.tour-extra-read-more {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    background: #ff7518;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-extra-read-more:hover {
    background: #e8640c;
}

/* Mobile */
@media (max-width: 768px) {

    .tour-extra-content__body {
        max-height: 250px;
    }

    .tour-extra-read-more {
        padding: 10px 22px;
        font-size: 15px;
    }

}
