html {
    scroll-behavior: smooth;
}

@keyframes image_blur {
    0% { filter: blur(1px);}
    50% { filter: blur(3px);}
    100% { filter: blur(1px);}
}

.ajax-loading {
    background-color: #e5e5e5;
    animation: image_blur 2s infinite;
}

.footer {
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #f5f5f5;
}

.site {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.gift-space {
    padding-top: 60px;
    padding-bottom: 20px;
    color: #eb7909;
}

.orange {
    color: #eb7909;
}

.vertical-center {
    display: flex;
    align-items: center;
    min-height: 85vh;
}

.gift-image {
    max-width: 160px;
    max-height: 160px;
}

.gift-image-small {
    max-width: 60px;
    max-height: 60px;
}

.menu-item {

}

.menu-item .overflow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(235, 121, 9, 0);
    transition: background-color 0.5s ease;
}

.menu-item a {
    display: block;
    position: relative;
    border: 1px solid #dfdfdf;
    margin: 5px;
}

.menu-item:hover .overflow {
    background-color: rgba(145, 135, 137, 0.47);
}

.menu-item h2 {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 10px;
    color: black;
    font-weight: bold;
}

.custom-button {
    height: 150px;
    font-size: 1.5rem;
    color: white;
    border: none;
    width: 100%;
    background-size: cover;
    background-position: center;
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.custom-button:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.custom-button:active {
    transform: scale(0.98);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.gift-image-container {
    width: 100%;
    padding-top: 100%; /* Create a square container (1:1 aspect ratio) */
    position: relative;
    overflow: hidden; /* Crop images if they exceed the container */
}

.gift-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the container while preserving its aspect ratio */
}