/* Pilgrimage Packages Page CSS */

/* Hero Banner */
.pilgrimage-hero {
    background: linear-gradient(90deg, rgba(23, 62, 126, 0.9) 0%, rgba(18, 30, 48, 0.7) 60%, rgba(243, 105, 32, 0.6) 100%), url('../images/destinations/kedarnath.jpg') center/cover no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.explore-badge {
    display: inline-block;
    background-color: transparent;
    border: 1px solid #f36920;
    color: #f36920;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.explore-badge i {
    margin-right: 5px;
}

.pilgrimage-hero-content h1 {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.pilgrimage-hero-content h1 .highlight {
    color: #f36920;
}

.pilgrimage-hero-content p {
    font-size: 1.15rem;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Packages Section */
.pilgrimage-packages-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.pilgrimage-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pkg-header-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.pkg-section-title {
    font-size: 2.5rem;
    color: #1a2b4c;
    font-weight: 700;
}

.pkg-section-line {
    width: 80px;
    height: 3px;
    background-color: #f36920;
    margin: 15px auto 0;
}

/* No Packages State */
.no-packages {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.no-packages i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.no-packages h2 {
    color: #1a2b4c;
    margin-bottom: 10px;
}

.no-packages p {
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .pilgrimage-hero {
        height: auto;
        min-height: 180px;
        padding: 25px 15px;
    }
    .explore-badge {
        margin-bottom: 8px;
        padding: 4px 12px;
        font-size: 0.75rem;
    }
    .pilgrimage-hero-content h1 {
        font-size: 1.4rem;
        line-height: 1.25;
        margin-bottom: 8px;
    }
    .pilgrimage-hero-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    .pilgrimage-packages-section {
        padding: 40px 10px;
    }
    .pkg-header-wrapper {
        text-align: left;
        margin-bottom: 30px;
    }
    .pkg-section-title {
        font-size: 1.6rem;
    }
    .pkg-section-line {
        margin: 12px 0 0;
    }
}
