﻿#PageHomeCinema h1 {
    font-size: 27px;
}

.RoundedCorners {
    border-radius: 10px !important;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.03);
}

#PageHomeCinema .btn {
    border-radius: 10px !important;
}

.HomeCinemaProduct {
    border: 1px solid #eee;
    border-radius: 10px !important;
    height: 100%;
    padding: 15px;
    transition: all .4s ease;
    width: 100%;
}

    .HomeCinemaProduct img {
        transition: all .4s ease;
    }

    /* Hover effect on the link affects the image */
    .HomeCinemaProduct:hover img {
        text-decoration: none;
        transform: scale(1.03);
        transition: all .4s ease;
    }

    .HomeCinemaProduct:hover {
        background: #fafafa;
        text-decoration: none !important;
    }

    .HomeCinemaProduct h4 {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .HomeCinemaProduct h5 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .HomeCinemaProduct p {
        font-size: 14px;
        font-weight: normal;
    }

#ProjectorCeilingMounts, #ConcealedProjectorMounts, #ProjectorPortHoleGlass, #FixedFrameProjectorScreens, #ProjectorServiceMounts {
    scroll-margin-top: 100px;
}

#HomeCinemaMainImg {
    /*    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);*/
    /*clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 50% 100%, 0% 90%);*/ /* Subtle peak at bottom center */
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 80%, 0% 100%); /* Subtle upward peak at bottom center */
    display: block;
    height: 300px;
    margin: auto;
    margin-bottom: -30px;
    object-fit: cover;
    object-position: 50% 70%;
    max-width: 1920px;
    width: 100%;
    animation: blurIn 2s ease-in forwards; /* Animation applied on load */
    /*filter: brightness(70%);*/ /* Darkens the image (adjust percentage as needed) */
    /*filter: blur(1px) brightness(60%);*/ /* Slight blur with darkening */
}

/* Keyframes for the blur effect */
@keyframes blurIn {
    100% {
        filter: blur(0px) brightness(60%);
    }

    0% {
        filter: blur(0);
    }
}