/*
Theme Name: Fortune Holidays
Theme URI: http://example.com/fortune-holidays
Author: Syronx Technology
Author URI: http://syronx.com
Description: A modern travel and tour WordPress theme.
Version: 11.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fortune-holidays
*/

@import url('HTML/styles/styles.css');

.no-posts-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 20px;
    border: 2px dashed #ddd;
    margin: 20px 0;
}

.no-posts-found p {
    font-size: 1.2rem;
    color: #777;
    font-family: var(--font-outfit);
    margin: 0;
}

/* Responsive & Mobile Menu Styles */
@media (max-width: 991px) {
    .navbar { display: none; }
    .mobile-toggle { display: block !important; background: transparent; font-size: 24px; color: var(--primary-color); }
    
    /* Hero Responsiveness */
    .hero-banner-outer { height: auto; min-height: 500px; padding: 100px 0; }
    .hero { padding: 0 20px; }
    .hero-title { font-size: 2.5rem !important; margin-bottom: 20px; }
    .search-pill-container { border-radius: 20px !important; padding: 20px !important; width: 100%; max-width: 100%; }
    .search-pill { flex-direction: column; width: 100%; }
    .search-pill .pill-item { border-bottom: 1px solid #eee; padding: 15px 0 !important; width: 100%; justify-content: flex-start; }
    .search-pill .divider { display: none; }
    .btn-pill-search { width: 100%; margin-top: 20px; }

    /* How It Works Responsiveness */
    .how-it-works .process-container { flex-direction: column; gap: 30px; }
    .how-it-works .process-container > div { flex-basis: 100% !important; height: auto !important; min-height: 250px; }
    .how-it-works .process-container .info-box { padding: 40px 20px; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2rem !important; }
}

/* Mobile Slider Menu */
.small-nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: 0.4s ease-in-out;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.small-nav-container.small-nav-con-on {
    right: 0;
}

.small-nav-upper {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.small-nav-logo img {
    height: 40px;
}

.small-nav-close {
    background: transparent;
    font-size: 24px;
    color: var(--primary-color);
}

.small-nav-content {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.small-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.small-nav-links li {
    margin-bottom: 10px;
    border-bottom: 1px solid #f9f9f9;
}

.small-nav-links li a {
    display: block;
    padding: 12px 0;
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    font-family: var(--font-outfit);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Basic dropdown support in mobile */
.small-nav-links .menu-item-has-children > a::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
}

.small-nav-links .sub-menu {
    display: none;
    list-style: none;
    padding-left: 15px;
    background: #fcfbff;
}

.small-nav-links .menu-item-has-children.active-drop > .sub-menu {
    display: block;
}

.small-nav-contact {
    margin-top: 30px;
}

.small-nav-contact hr {
    border: 0;
    border-top: 1px solid #eee;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #555;
    font-family: var(--font-work);
}

.contact-item i {
    color: var(--primary-color);
}

