/* Base Setup */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Animations */
@keyframes slow-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.animate-slow-zoom {
    animation: slow-zoom 20s infinite alternate linear;
}

.animate-bounce-slow {
    animation: bounce 2s infinite;
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Chat Window Animation States */
.chat-open {
    transform: scale(1) translateY(0) !important;
    opacity: 1 !important;
}

/* Custom Scrollbar */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Scroll Snap for Carousel */
#carousel-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
#carousel-container::-webkit-scrollbar {
    display: none;
}

/* Typing Indicator Dots */
.dot-flashing {
    position: relative;
    width: 6px;
    height: 6px;
    border-radius: 5px;
    background-color: #9ca3af;
    color: #9ca3af;
    animation: dot-flashing 1s infinite linear alternate;
    animation-delay: 0.5s;
}
.dot-flashing::before, .dot-flashing::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    width: 6px;
    height: 6px;
    border-radius: 5px;
    background-color: #9ca3af;
    color: #9ca3af;
    animation: dot-flashing 1s infinite alternate;
}
.dot-flashing::before {
    left: -10px;
    animation-delay: 0s;
}
.dot-flashing::after {
    left: 10px;
    animation-delay: 1s;
}

@keyframes dot-flashing {
    0% { background-color: #9ca3af; }
    50%, 100% { background-color: #4b5563; }
}