/* Custom styles for Riverton Rose Retreat */

html {
    scroll-behavior: smooth;
}

body {
    /* Fallback for custom scrollbar if needed, though Tailwind handles most */
}

/* Geometric shapes animation delays */
.animate-float-delayed {
    animation-delay: 3s;
}

/* Gradient text utility */
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f5f3ef;
}

::-webkit-scrollbar-thumb {
    background: #065f46;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #047857;
}

/* Mobile menu transitions */
#mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

#mobile-menu.inactive {
    opacity: 0;
    pointer-events: none;
}

/* Line animations for mobile menu */
#mobile-menu-btn.active #line1 {
    transform: rotate(45deg) translate(5px, 5px);
}

#mobile-menu-btn.active #line2 {
    opacity: 0;
}

#mobile-menu-btn.active #line3 {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 1.5rem;
}

/* Intersection Observer animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}
