html, body {
    scroll-behavior: smooth;
}

.fade-in {
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.hover-grow:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

.nav-button {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.nav-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #b7cbe9;
}

.carousel {
    position: relative;
    width: 100%;
    height: 60vh; /* Adjusted height */
    overflow: hidden;
    border-radius: 0.375rem; /* Optional: Rounded corners for the carousel */
}

.carousel-inner {
    display: flex;
    width: 100%; /* Full width for the inner container */
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.carousel-item {
    width: 80%; /* Reduced width of the image */
    height: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10%; /* Creates spacing between images */
}

.carousel-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 0.375rem; /* Optional: Rounded corners for images */
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease-in-out;
}

.carousel-control:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-control i {
    font-size: 1.5rem;
    color: #333;
}

/* Fixed header styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

body {
    padding-top: 80px;
    background-color: rgb(252, 228, 212);
}
