/* Yatra Featured Section - Gradient Background */
.yatra-featured-section {
    background: linear-gradient(135deg, #631b00, #a43400 55%, #f0a000);
    color: #fff
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

/* Animated background effect */
.yatra-featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x bottom;
    background-size: cover;
    opacity: 0.3;
    pointer-events: none;
}

/* Header Styles */
.yatra-header {
    text-align: center;
    margin-bottom: 50px;
}

.yatra-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white !important;
    padding: 8px 25px;
    border-radius: 50px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.yatra-title {
    font-size: 2.5rem;
    color: white;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.yatra-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Card Styles */
.yatra-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
}

.yatra-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Image Styles */
.event-image {
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.yatra-card:hover .event-image img {
    transform: scale(1.05);
}

.yatra-date-badge {
    /*position: absolute;*/
    /*bottom: 15px;*/
    /*left: 15px;*/
    /*background: linear-gradient(135deg, #ff6b35, #f7931e);*/
    /*color: white;*/
    /*padding: 5px 15px;*/
    /*border-radius: 50px;*/
    /*font-size: 12px;*/
    /*font-weight: 600;*/
    /*box-shadow: 0 3px 10px rgba(0,0,0,0.2);*/
}

/* Content Styles */
.event-content {
    padding: 20px;
}

.event-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
    line-height: 1.4;
}

.yatra-place {
    color: #ff6b35;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 14px;
}

.event-desc {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Button Group */
.yatra-btn-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.yatra-detail-btn {
    flex: 1;
    background: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    text-align: center;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.yatra-detail-btn:hover {
    background: #ff6b35;
    color: white;
    text-decoration: none;
}

.yatra-book-btn {
    flex: 1;
    /*background: linear-gradient(135deg, #25D366, #128C7E);*/
    color: white;
    text-align: center;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.yatra-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    color: white;
    text-decoration: none;
}

/* View All Button */
.yatra-view-all {
    text-align: center;
    margin-top: 50px;
}

.yatra-view-all-btn {
    background: white;
    color: #764ba2;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.yatra-view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: white;
    color: #667eea;
}

/* Responsive */
@media (max-width: 768px) {
    .yatra-featured-section {
        padding: 50px 0;
    }
    
    .yatra-title {
        font-size: 1.8rem;
    }
    
    .yatra-btn-group {
        flex-direction: column;
    }
    
    .event-image img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .yatra-title {
        font-size: 1.5rem;
    }
    
    .yatra-subtitle {
        font-size: 0.9rem;
    }
}