/* ===== Custom styles from index.html ===== */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f8f8;
    /* Light background color */
}

/* Custom styles for hero section background image */
.hero-background {
    background-image: url('https://placehold.co/1920x600/FFDDC1/000000?text=Hero+Image+Bibo+Event');
    /* Placeholder for background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay for hero section to make text more readable */
.hero-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    /* Translucent black color */
}

/* Swiper custom styles */
.hero-slider {
    height: 60vh;
    /* Adjust height as needed */
    min-height: 400px;
}

.hero-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    color: white;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    transition: background-color 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7);
    width: 12px;
    height: 12px;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #ec4899;
    /* Tailwind pink-500 */
}

/* Floating Action Button Styles */
.fab-container {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(.4, 2, .6, 1), box-shadow 0.2s;
    animation: fab-bounce 2s infinite;
}

.fab-btn.zalo {
    background: #ffffff;
}

.fab-btn.phone {
    background: #25d366;
}

.fab-btn:hover {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    animation: fab-shake 0.4s;
}

@keyframes fab-bounce {

    0%,
    100% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.08);
    }

    20% {
        transform: scale(0.96);
    }

    30% {
        transform: scale(1.04);
    }

    40% {
        transform: scale(0.98);
    }

    50% {
        transform: scale(1.02);
    }

    60% {
        transform: scale(1);
    }
}

@keyframes fab-shake {
    0% {
        transform: scale(1.15) rotate(-8deg) translateX(0);
    }

    20% {
        transform: scale(1.15) rotate(-8deg) translateX(-4px);
    }

    40% {
        transform: scale(1.15) rotate(-8deg) translateX(4px);
    }

    60% {
        transform: scale(1.15) rotate(-8deg) translateX(-2px);
    }

    80% {
        transform: scale(1.15) rotate(-8deg) translateX(2px);
    }

    100% {
        transform: scale(1.15) rotate(-8deg) translateX(0);
    }
}