/* =========================================
   PILGRIMAGE & YATRA PAGE STYLES
   ========================================= */

.pilgrimage-container {
    padding-top: 20px;
    padding-bottom: 60px;
}

.pilgrimage-hero {
    text-align: center;
    margin-bottom: 60px;
}

.pilgrimage-title {
    font-family: var(--font-heading, "Cinzel", serif);
    color: var(--primary-green, #1B4D3E);
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pilgrimage-subtitle {
    font-family: var(--font-body, "Outfit", sans-serif);
    color: var(--text-color, #333);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.yatra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.yatra-card {
    background: #fff;
    border-radius: 20px;
    /* Match shop/product cards */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yatra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.yatra-card-image-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: #f0f0f0;
    overflow: hidden;
}

.yatra-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.yatra-card:hover .yatra-card-img {
    transform: scale(1.05);
}

/* Fallback if needed */
.yatra-card-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: #f0f0f0;
}

.yatra-card-content {
    padding: 20px;
    text-align: center;
}

.yatra-card-title {
    font-family: var(--font-heading, "Cinzel", serif);
    color: var(--primary-green, #1B4D3E);
    font-size: 1.3rem;
    margin: 0 0 10px;
    font-weight: 700;
}

.yatra-card-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.yatra-book-btn {
    display: inline-block;
    background: var(--primary-green, #1B4D3E);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.yatra-book-btn:hover {
    background: var(--gold-accent, #C9A24D);
    color: var(--primary-green, #1B4D3E);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 162, 77, 0.3);
}

/* Responsive Styles for Pilgrimage Page */
@media (max-width: 992px) {
    .yatra-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pilgrimage-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .yatra-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pilgrimage-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .pilgrimage-title {
        font-size: 1.8rem;
    }
}

/* =========================================
   PAGE SPECIFIC OVERRIDES
   ========================================= */

/* Hero Background Override for Pilgrimage Page */
.yatra-page-hero {
    background: url('/wp-content/uploads/2025/12/yatrabackgroundimg.webp') no-repeat center center fixed !important;
    background-size: cover !important;
}