/* Enhanced Banner Styles */
.container{
    max-width: 1360px;
}
.hero-banner {
    position: relative;
    height: 400px; /* Changed to viewport height for better responsiveness */
    min-height: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    /* Added subtle animation for engagement */
    animation: bannerZoom 20s ease-in-out infinite;
}

@keyframes bannerZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)); /* Gradient overlay for depth */
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
}

.banner-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-title {
    font-size: 42px; /* Fluid typography for better scaling */
    margin-bottom: 15px;
    font-weight: 600;
    color: #fff;
}

.banner-subtitle {
    font-size: 16px;
    margin-bottom: 30px;

}

.banner-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff6200, #ff8c00); /* Gradient for modern look */
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 98, 0, 0.3);
}

.banner-cta:hover {
    background: linear-gradient(135deg, #e55a00, #ff6b00);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 98, 0, 0.4);
}

.tour-location svg {
    fill: #1C8EB8;
}
.tour-meta-left svg {
    fill: #1C8EB8;
}

/* Enhanced Page Layout */
.all-tours-page {
    font-family: 'Inter', 'Arial', sans-serif; /* Modern font stack */
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tours-section {
    padding: 80px 0; /* Increased padding for more breathing room */
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef); /* Subtle gradient background */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2em, 4vw, 2.8em);
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header p {
    font-size: 1.1em;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); /* Slightly wider cards */
    gap: 40px; /* Increased gap for better spacing */
}

.tour-card {
    background: #fff;
    border-radius: 16px; /* Softer corners */
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); /* Softer, larger shadow */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother easing */
}

.tour-card:hover {
    transform: translateY(-12px) scale(1.02); /* Added subtle scale */
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.tour-image {
    height: 240px; /* Slightly taller for better visuals */
    background-size: cover;
    background-position: center;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6200, #ff8c00);
    color: #fff;
    padding: 8px 14px;
    border-radius: 25px;
    font-size: 0.85em;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(255, 98, 0, 0.3);
}

.tour-content {
    padding: 30px; /* More padding inside */
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.stars {
    color: #ffc107;
    font-size: 1.4em;
}

.rating-text {
    font-size: 0.9em;
    color: #7f8c8d;
}

.tour-title {
    font-size: 22px;
    margin: 0 0 18px 0;
    color: #2c3e50;
    line-height: 1.3;
    font-weight: 600;
    text-transform: capitalize;
}

.tour-location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #7f8c8d;
}

.tour-location .icon {
    width: 20px;
    height: 20px;
    fill: #1C8EB8;
}

.tour-price {
    font-size: 20px;
    font-weight: bold;
    color: #000; /* Slightly different green for freshness */
    margin-bottom: 20px;
}

svg.tour-info-icon {
    height: 20px;
    fill: #1C8EB8;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-meta-left {
    display: flex;
    gap: 6px;
    color: #7f8c8d;
    font-size: 0.95em;
}

.explore-btn {
    background: #1C8EB8;
    color: #fff;
    padding: 12px 24px; /* Slightly larger */
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
 
}
a.explore-btn:hover {
    color:#fff !important;
}

.no-tours {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: #7f8c8d;
    font-size: 1.2em;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2.5em;
    }
    
    .banner-subtitle {
        font-size: 1.2em;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tours-section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 2.2em;
    }
    
    .tour-content {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 50vh;
        min-height: 300px;
    }
    
    .banner-title {
        font-size: 2em;
    }
    
    .banner-cta {
        padding: 12px 28px;
        font-size: 1em;
    }
    
    .tour-image {
        height: 200px;
    }
    
    .tour-content {
        padding: 20px;
    }
}