/* ====== BASIC RESET ====== */

@import url(headerfooter.css); 
@import url(citypages.css); 

/* ====== HERO SECTION ====== */
/* Base Styles for the Content Area */
/* ... (Existing CSS for .destination-content, .main-destinations, .sidebar, .destination-card remains the same) ... */

.wid100{ width: 100%; padding: 20px 0px;}
.month{width:280px; float:left; margin:00px 0px; border:1px solid #000; position:absolute; margin-top:35px; background-color:#fff; margin-top:0px;  }
.month span{width:39.5px !important; text-align:center; float:left; color: #fff;margin-bottom: 0px !important;font-size: 12px !important; padding:5px 0px;background-color: cornflowerblue;outline: 1px solid #ffea7f;}
.month label{width:100% !important; text-align:center; float:left !important; color: #000; padding: 0px 5px; box-shadow:0px 0px 1px #000; height:30px !important;    margin-bottom: 0px !important;}
.month button{ text-align:center !important; margin:0px 0px 0px; width:25%; float:left; border:none; background-color:#fff;  }
.month h3{ text-align:center !important; width:50%; float:left; margin:0px !important;  }
#cat{position: absolute;z-index: 1000;top: 34px;display: none;}
.month span.date{ border: 2px solid;}
p{line-height: 26px;
    font-size: 16px;}
    li{line-height: 26px;
    font-size: 16px;}
/* --- Sidebar Styles --- */
img{max-width: 100%;}
h1{margin-top: 20px;}
h2{margin-bottom: 20px;}
.sidebar-widget {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* ⭐ NEW: Categories Widget Styles ⭐ */

.categories-widget h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #343a40;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed #f1f1f1;
}

.category-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.category-list a {
    text-decoration: none;
    color: #6c757d;
    font-size: 16px;
    transition: color 0.3s;
}

.category-list a i {
    margin-right: 8px;
    color: #007bff; /* Icon color */
}

.category-list a:hover {
    color: #007bff;
}

.category-list .count {
    font-size: 14px;
    color: #6c757d;
    background-color: #f1f1f1;
    padding: 3px 8px;
    border-radius: 4px;
}

/* ... (Existing CSS for .recent-posts-list and .popular-tags remains the same) ... */

.destination-content {
    display: flex; /* Enables flex layout for main content and sidebar */
    gap: 30px; /* Space between main destinations and sidebar */
    padding: 30px 0; /* Adjust padding as needed */
    max-width: 1200px; /* Example max width */
    margin: 0 auto; /* Center the content */
    margin-top: -180px;
    position: relative;
}

.main-destinations {
    flex-grow: 1; /* Allows it to take up available space */
    display: inline-block; /* Use grid for destination cards */
    grid-template-columns: repeat(2, 1fr); /* Two columns for cards */
    gap: 30px; /* Space between cards */
}

.sidebar {
    width: 460px; /* Fixed width for the sidebar */
    flex-shrink: 0; /* Prevents sidebar from shrinking */
}

/* --- Destination Card Styles --- */

.destination-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.card-image img {
    width: 100%;
    
    object-fit: cover; /* Ensures image covers the area */
    display: block;
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 5px;
    color: #007bff; /* Primary color for title */
}

.rating {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.stars {
    color: #ffc107; /* Yellow color for stars */
    font-size: 18px;
    margin-right: 5px;
}

.rating-value {
    color: #6c757d;
    font-size: 14px;
}

.price {
    font-size: 30px;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 15px;
}

.per-person {
    font-size: 16px;
    font-weight: 400;
    color: #6c757d;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.duration {
    font-size: 16px;
    color: #6c757d;
}

.book-now {
    text-decoration: none;
    color: #007bff;
    font-weight: 600;
    transition: color 0.3s;
}

.book-now:hover {
    color: #0056b3;
}

/* --- Sidebar Styles --- */

.sidebar-widget {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* --- Popular Tags Styles --- */

.popular-tags h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #343a40;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-button {
    text-decoration: none;
    background-color: #f8f9fa;
    color: #6c757d;
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid #dee2e6;
    font-size: 14px;
    transition: all 0.3s;
}

.tag-button:hover {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

/* --- Recent Posts Styles (Top Right Corner) --- */

.recent-posts-list {
    /* No H3 in the screenshot, but you might want to add a title */
}

.recent-post-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.post-image-small img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0; /* Prevents image from shrinking */
}

.post-details a {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #343a40;
    text-decoration: none;
    line-height: 1.4;
}

.post-details a:hover {
    color: #007bff;
}

.post-date {
    display: block;
    font-size: 13px;
    color: #6c757d;
    margin-top: 3px;
}

/* --- Media Query for Responsiveness (Optional but recommended) --- */
@media (max-width: 992px) {
    .destination-content {
        flex-direction: column; /* Stacks content on smaller screens */
        padding: 20px;
    }

    .sidebar {
        width: 100%; /* Sidebar takes full width */
    }

    .main-destinations {
        grid-template-columns: 1fr; /* Single column for cards on smaller screens */
    }
}



 .slider-container {
        width: 100%;
        margin: auto;
        text-align: center;
        margin-bottom: 20px;
    }

    .main-image {
        width: 100%;
        
        object-fit: cover;
        border-radius: 10px;
    }

    .thumbs {
        display: flex;
        justify-content: center;
        margin-top: 10px;
        gap: 10px;
    }

    .thumbs img {
        width: 40px;
        height: 40px;
        cursor: pointer;
        border-radius: 5px;
        opacity: 0.6;
        transition: 0.3s;
        object-fit: cover;
    }

    .thumbs img.active,
    .thumbs img:hover {
        opacity: 1;
        border: 2px solid #007bff;
    }



      

.form-section {
    flex: 1; 
    padding: 20px;
    background-color: #2596be;
    border-radius: 6px;
    order: 2; /* डेस्कटॉप पर दाएँ */
    margin-bottom: 20px;
}
.form-section p{color: #fff;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px dashed; font-weight: 600;
    padding-bottom: 10px;}
.form-heading {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

/* --- फ़ॉर्म फ़ील्ड स्टाइलिंग --- */
#extras{display: none;}
#petwrap{display: none;}
.form-group {
    margin-bottom: 10px;
}
.warning{  border: 2px solid red !important;}
.warning2{  border: 2px solid #8BC34A !important;}
.form-group label b{color:red;}
.form-group label.ext b{color:#fff;}
.form-group label {
    display: block;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
    font-size: 14px;
    margin-top: 5px;
}

/* इनपुट और सेलेक्ट को पूरी चौड़ाई */
.txtbox {
    width: 100%; 
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; 
    font-size: 16px;
}

/* हिंट टेक्स्ट */
.hint, .small-hint {
    font-size: 12px;
    color: #fff;
    margin-top: 5px;
    display: block;
}

/* --- हाफ-चौड़ाई ग्रुपिंग --- */

.half-width-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 0px;
}

.half-input {
    width: 50%; /* दोनों को आधी-आधी चौड़ाई */
    box-sizing: border-box;
    position: relative;
}

/* --- राइड टाइप रेडियो बटन --- */
.radio-options {
    display: flex;
    gap: 30px;
    align-items: center;
}

.radio-options input[type="radio"] {
    margin-right: 5px;
}
.radio-options label {
    display: inline;
    font-weight: normal;
    margin-bottom: 0;
}


/* --- टॉगल बटन (Add Child Seat/Pets) --- */
.showchild-div {
    background-color: #ddd;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 15px;
}

.showchild-div label {
    display: block;
    font-weight: bold;
    color: #333;
    margin: 0;
}

/* Get Fare बटन */
.nir-btn {
    display: block;
    width: 100%;
    background-color: #ff9900; 
    color: white;
    padding: 15px 20px;
    margin-top: 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none; /* अगर यह <a> टैग है */
}

/* --- मोबाइल रिस्पॉन्सिवनेस (768px से छोटी स्क्रीन) --- */

@media (max-width: 768px) {
    .page-container {
        flex-direction: column;
        padding: 0px;
    }
    .slider-container {
        width: 100%;
        margin: auto;
        text-align: center;
        margin-bottom: 20px;
    }
    .background-content h1 {
    color: white;
    font-size: 1.6em !important;
    margin-bottom: 10px;
} .background{ height: 200px !important;}
.destination-content{ margin-top: -40px;}
    .form-section {
        order: -1; /* फॉर्म को टॉप पर लाओ */
    }

    .content-section {
        order: 2;
        padding-right: 0;
    }
    
    /* मोबाइल में: हाफ-चौड़ाई फ़ील्ड्स को फुल-चौड़ाई में बदलें */
    .half-width-group {
        
        gap: 2;
    }
    
    .half-input {
        width: 50%;
        margin-bottom: 15px; /* अलग करने के लिए मार्जिन */
    }
}


.background {
    /* Apni image file ka path yahaan set karein */
    
    
    /* Image ko puri div mein cover karne ke liye */
    background-size: cover; 
    
    /* Image ko center mein fix rakhega */
    background-position: center; 
    
    /* Div ki height set karein */
    height: 500px; 
    
    /* Content ko center karne ke liye flexbox ka istemal */
    display: flex;
    justify-content: center; /* Horizontally center */
    align-items: center;    /* Vertically center */
    
    /* Image ke upar text ke liye position relative zaroori hai (optional, par achcha practice hai) */
    position: relative;
    text-align: center;
}

/* Title aur Content Styling */
.background-content {
    /* Content ko padhne mein aasan banane ke liye thoda dark background overlay */
    background-color: rgba(0, 0, 0, 0.4); 
    padding: 20px 40px;
    border-radius: 8px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.background-content h1 {
    color: white;
    font-size: 3em;
    margin-bottom: 10px;
}

.background-content p {
    color: #f0f0f0;
    font-size: 1.2em;
}