/* General Styles */
body {
    font-family: Arial, sans-serif;
    color: #ffffff;
}

.container {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    text-align: -webkit-center;
    flex-direction: column;
    align-items: center;
}

.block {
    display: flex;
    margin: 50px 0;
    padding: 10px;
    height: 60vh;
    width: calc(60vh*(9/15));
    background-color: #c5c5c578;
    border-radius: 8px;
    box-shadow: 7px 8px 6px rgba(0, 0, 0, 0.1);
    justify-content: center;
    font-size: 18px;
    align-items: center;
    flex-direction: column;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.block iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    /* Optional, removes iframe border */
}

.background {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    background: url('/image/IMG_1296.JPG') repeat-x center center/cover;
    filter: blur(8px);
    animation: zoomBackground 15s infinite alternate;
}

@keyframes zoomBackground {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/*[data-aos="fade-up"] {
/*  opacity: 1 !important; /* Ensure visibility when animated */
/*  transform: translateY(0) !important; /* Restore position */
/* */

.join-button {
    margin: 20px 0;
    background-color: #404040;
    /* Green */
    display: inline-block;
    text-decoration: none;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2em;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.join-button:hover {
    transform: scale(1.1);
    background-color: #323232;
    /* Darker green on hover */
}

.join-button:hover .heart-popup {
    opacity: 1;
    transform: scale(1);
    animation: popUp 0.5s ease;
}

.heart-popup {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 1.5em;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s ease;
    background-color: transparent;
    border: none;
    overflow: visible;
    z-index: 1;
}

@keyframes popUp {
    0% {
        transform: scale(0.5);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }

}

/* Simplified Floating Button Styling */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffffff1f;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 14px;
    box-shadow: 6px 11px 8px 0px rgba(0, 0, 0, 0.2);
}

.floating-btn:hover {
    background-color: #333;
    /* Slightly darker on hover */
}
.floating-btn-back{
    position: fixed;
    bottom: 20px;
    background-color: #ffffff1f;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 14px;
    box-shadow: 6px 11px 8px 0px rgba(0, 0, 0, 0.2);
    left: 20px;
}




.carousel {
    display: flex;
    flex-direction: row;
    gap: 10px;
    height: 30vh;
    width: 90vw;
    overflow-y: auto;
    max-height: 600px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0);
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    align-items: center;
}

.carousel-slide {
    height: 80%;
    aspect-ratio: 1 / 1;
    background-color: lightblue;
    border-radius: 100%;
    border: 2px dashed gray;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: center;
    font-size: 1.2rem;
    color: #333;
    background-position: center;
    background-size: cover;
}


.carousel::-webkit-scrollbar {
    display: none;
}