.carousel-item {
    height: 100%;
    /* Ensure the items take the full height of the parent */
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    /* Smooth transitions */
}

.carousel-content {
    max-width: 600px;
    /* Optional: Limit the width of the content for better readability */
    text-align: center;
    /* Center-align the text */
    animation: fadeIn 1s ease-in-out;
    /* Fade-in animation */
}

a,
button,
.hover\:bg-red-700,
.hover\:text-gray-900,
.hover\:text-gray-400 {
    transition: all 0.3s ease;
}

body {
    scroll-behavior: smooth;
}


a {
    text-decoration: none;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.carousel-content-wrapper {
    padding-left: 15%;
    padding-top: 32px;
}

@media (max-width: 768px) {
    .carousel-content-wrapper {
        padding-left: 16px;
        padding-top: 16px;
    }
}

@media (max-width: 576px) {
    .carousel-content-wrapper {
        padding-left: 8px;
        padding-top: 8px;
    }
}

header.sticky {
    position: -webkit-sticky;
    /* For Safari */
    position: sticky;
    top: 0;
    z-index: 50;
    /* Ensures it stays above other content */
}

#menu-toggle {
    cursor: pointer;
}

#menu {
    display: none;
    /* transform: translateY(-100%); */

}

#menu.show {
    display: block;
    /* transform: translateY(0); */

}

@media (min-width: 768px) {
    #menu {
        display: block;
    }
}