/* Custom Styles for Desert Oasis Inn */

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #4A233A; /* Plum */
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #2a101d; /* Darker Plum */
}

/* Clip Paths */
.clip-diagonal {
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Typography Tweaks */
h1, h2, h3, h4 {
    letter-spacing: -0.02em;
}

/* Form Focus States */
input:focus, textarea:focus {
    border-bottom-width: 2px;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

/* Loading State for Buttons */
button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
