/* CSS for Hero Section with Background Image */
.hero-section {
    position: relative;
    height: 100vh; /* Full viewport height */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    text-align: center;
    color: white;
    display: grid;
    place-items: center;
    grid-template-columns: 1fr;
}

.hero-content {
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    /* width: 100%; */
    border-radius: 12px;
    padding: 2rem 5rem;
    padding: 2rem;
    background-color: #00000055;
    backdrop-filter: blur(3px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.col-12.mx-auto>img{
    width: 100%;
    height: auto;
}

a#observeBtn{
    color:#ffa502 !important;
    font-size:1.5rem;
}
button.like-btn i,button.like-btn span{
    color: white;
    cursor: pointer;
    font-size: 1rem !important;
}