/* Page Header */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background-image: url('https://content3.jdmagicbox.com/comp/purulia/u9/9999p3252.3252.181127232641.d5u9/catalogue/jelia-para-durga-mandir-purulia-03beq4maa9.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(92,44,58,0.8), rgba(92,44,58,0.95));
}

.page-header-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--text-light);
    padding: 0 2rem;
}

.page-header-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.page-header-content p {
    font-size: clamp(1rem, 2vw, 1.4rem);
    opacity: 0.9;
}

/* Page Content */
.page-content {
    padding: 5rem 2rem;
    background: var(--bg-beige);
    min-height: 60vh;
}

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

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.content-main h2 {
    font-size: 2rem;
    color: var(--deep-purple);
    margin-bottom: 1rem;
}

.content-main > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.info-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--deep-purple);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card h3 i {
    color: var(--accent-orange);
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.info-card ul li strong {
    color: var(--deep-purple);
}

/* Sidebar */
.content-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    color: var(--deep-purple);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-orange);
}

.contact-list {
    list-style: none;
}

.contact-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #555;
}

.contact-list li i {
    color: var(--accent-orange);
    width: 20px;
}

.events-list {
    list-style: none;
}

.events-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.events-list li:last-child {
    border-bottom: none;
}

.event-date {
    background: var(--deep-purple);
    color: var(--text-light);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 50px;
    text-align: center;
}

.event-name {
    color: #555;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 40vh;
        min-height: 300px;
    }

    .page-content {
        padding: 3rem 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: var(--text-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    height: 200px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.2rem;
    color: var(--deep-purple);
    margin-bottom: 0.5rem;
}

.team-role {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--text-light);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

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

/* Programme List */
.program-list {
    margin-top: 2rem;
}

.program-item {
    display: flex;
    gap: 1.5rem;
    background: var(--text-light);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.program-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.program-item.featured {
    border-left: 4px solid var(--accent-orange);
}

.program-time {
    min-width: 120px;
    text-align: center;
    padding: 1rem;
    background: var(--deep-purple);
    border-radius: 10px;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.time-label {
    font-weight: 600;
    font-size: 1rem;
    display: block;
}

.time-detail {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.program-details h3 {
    font-size: 1.2rem;
    color: var(--deep-purple);
    margin-bottom: 0.75rem;
}

.program-details p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .program-item {
        flex-direction: column;
    }
    
    .program-time {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
