/* Custom Global Styles for Isla de Pascua */
body {
    scroll-behavior: smooth;
}

/* Glassmorphism effects for some components */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hide scrollbar for cleaner look if desired */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #006B63; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #004d47; 
}

/* Dynamic text gradients */
.text-gradient {
    background: linear-gradient(to right, #006B63, #009688);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
