/* Home Page Hero Section */

.hero-home {
    min-height: 550px;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)
        ),
        url("../images/kendrapada.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: white;

    padding: 50px 20px;
}


.hero-content {
    max-width: 800px;
}


.hero-content h1 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 20px;
}


.hero-content p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
}


/* About Kendrapada */

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}


.container p {
    line-height: 1.8;
}


/* Kendrapada Gallery */

.kendrapada-gallery {
    background-color: #e9f5ee;
    padding: 70px 0;
}


.home-gallery-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;

    box-shadow: 0 3px 15px
        rgba(0, 0, 0, 0.15);
}


.home-gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}


.home-gallery-card h4 {
    padding: 20px;
    margin: 0;
    color: #198754;
}


/* Mobile Responsive */

@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-home {
        min-height: 450px;
    }

    .about-image {
        height: 300px;
    }

}