/* Page Hero (Other Pages) */
.page-hero {
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 50px; /* Space below banner */
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    position: relative;
    z-index: 2;
    color: #fff; /* Override for white text on dark background */
}

/* Content Blocks for Our Gaushala Page (General enough for other pages too if needed) */
.content-block {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.content-block.reverse {
    flex-direction: row-reverse;
}

.content-block .text-content {
    flex: 2;
    min-width: 300px;
}

.content-block .text-content p {
    margin-bottom: 15px;
    color: #555;
}

.content-block .image-placeholder {
    flex: 1;
    min-width: 300px;
    height: 250px;
    background-color: #e0f2f1; /* Light teal placeholder */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00796B;
    font-size: 1.2rem;
    font-weight: bold;
    overflow: hidden; /* For images */
}

.content-block .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
      .page-hero h1 {
        font-size: 2rem;
    }
    .content-block {
        flex-direction: column;
    }
    .content-block.reverse {
        flex-direction: column;
    }
    
}