/* Custom Styles for Shameless Oasis */

html {
    scroll-behavior: smooth;
}

body {
    /* Fallback background if Tailwind fails to load */
    background-color: #0f172a;
    color: #f8fafc;
}

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

::-webkit-scrollbar-track {
    background: #0f172a;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #0D9488;
}

/* Geometric Shapes */
.geometric-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

/* Animation Utilities */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Aspect Ratios */
img {
    max-width: 100%;
    height: auto;
}
