/* Custom CSS for Ashtasakhi Homes */

html {
    scroll-padding-top: 5rem; /* Offset for fixed navbar */
}

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

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

::-webkit-scrollbar-thumb {
    background: #d4af37; 
    border-radius: 4px;
}

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

/* Animations */
.fade-up-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar Scrolled State */
.navbar-scrolled {
    background-color: rgba(15, 59, 43, 0.95) !important;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* Hero Section adjustments */
.hero-section {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

@media (min-width: 768px) {
    .hero-section {
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }
}
