﻿/* Permanent title styling */
.static-title-container {
    position: absolute;
    width: 100%;
    top: 0;
    /*justify-content: flex-start;*/
    margin-bottom: 1rem; /* Add spacing below the title */
}

.static-title {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Playfair Display', sans-serif;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9);
    margin-bottom: 2rem;
    margin-top: 1rem;
    color: white;
    z-index: 4; /* Ensure it appears on top of the background layers */
}


#lal-title {
    height: 40vh;
    /*clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);*/
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-radius: 20px;
}

    #lal-title .bg-layer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('/images/home/index/celebration.jpg') center/cover no-repeat;
        transition: opacity 1s ease-in-out;
    }

    #lal-title .bg-layer-1 {
        z-index: 1;
    }

    #lal-title .bg-layer-2 {
        z-index: 2;
        opacity: 0;
    }

    #lal-title .content-wrapper {
        position: relative;
        z-index: 3;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

.home-carousel-container {
    position: relative;
    top: 0;
    text-align: center;
    height: auto;
    color: white;
}

.slide .item {
    display: none;
}

    .slide .item.active {
        display: block;
    }

.item .content {
    position: relative;
    color: rgb(255, 255, 255);
    transform: translate(0, -50%);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
    animation: fadeIn 1s ease-in-out;
}

.name {
    font-size: 35px;
    /*text-transform: uppercase;*/
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out forwards;
}

.des {
    font-size: 25px;
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s forwards;
}

@keyframes animate {
    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to {
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

.btn-try-now {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.5s;
    animation: animate 1s ease-in-out 0.6s forwards;
}

    .btn-try-now:hover {
        background-color: white;
    }
