/* wallpaper */
.wallpaper {
    position: relative;
    height: 50vh;
    overflow: hidden;
    border-bottom: rgb(0 110 28 / var(--tw-bg-opacity, 1)) solid 4px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 1rem;
}

.wallpaper-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    z-index: 10;
    margin: 0;
}

.wallpaper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.1);
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

body {
    font-family: 'Cairo', sans-serif;
}

h1,
h2,
h3,
.font-headline {
    font-family: 'Cairo', sans-serif;
}

/* Carousel Styles */
.carousel-item {
    display: none;
    animation: fade 0.8s ease-in-out;
}

.carousel-item.active {
    display: flex;
}

@keyframes fade {
    from {
        opacity: 0.4
    }

    to {
        opacity: 1
    }
}