/* Custom styles beyond Tailwind utility classes */

/* Pulse animation for WhatsApp button */
@keyframes custom-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

.pulse-animation {
    animation: custom-pulse 2s infinite;
}

/* Blur for Blind Gallery */
.filter-blur {
    filter: blur(5px);
    transform: scale(1.1); /* Prevents white edges when blurred */
}

/* Accordion transition for max-height */
.accordion-content {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Marble Texture Background Class (Placeholder till image is added) */
.marble-bg {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.05' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    background-attachment: fixed;
}

/* Custom Selection to match elegant theme */
::selection {
    background-color: #bda662;
    color: #050706;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #050706; 
}
::-webkit-scrollbar-thumb {
    background: #bda662; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a38d4f; 
}

/* Logo Symbol Mask for Solid Gold Color */
.logo-symbol {
    background-color: #bda662;
    -webkit-mask: url('logo-symbol.svg') no-repeat center / contain;
    mask: url('logo-symbol.svg') no-repeat center / contain;
    transition: transform 0.3s ease;
}
.group:hover .logo-symbol {
    transform: scale(1.05);
}

/* Custom Swiper Styles */
.swiper-button-next,
.swiper-button-prev {
    color: #bda662 !important;
}

.swiper-pagination-bullet {
    background: #ffffff !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #bda662 !important;
    opacity: 1;
}

/* Modal Scroll Lock */
body.modal-open {
    overflow: hidden;
}
