@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --primary-blue: #0066b2;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #000;
    font-family: 'Jost', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.water-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0, 102, 178, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.water-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('../assets/IMG-20260604-WA0004.jpg'); /* Using the lake water image as a texture if possible */
    background-size: cover;
    opacity: 0.3;
    pointer-events: none;
}

/* Water wave animation */
.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('https://raw.githubusercontent.com/kelant/water-wave-animation/master/wave.png');
    background-size: 1000px 100px;
}

.wave1 {
    animation: animate 30s linear infinite;
    z-index: 1000;
    opacity: 1;
    animation-delay: 0s;
    bottom: 0;
}

.wave2 {
    animation: animate2 15s linear infinite;
    z-index: 999;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: 10px;
}

.wave3 {
    animation: animate 30s linear infinite;
    z-index: 998;
    opacity: 0.2;
    animation-delay: -2s;
    bottom: 15;
}

@keyframes animate {
    0% { background-position-x: 0; }
    100% { background-position-x: 1000px; }
}

@keyframes animate2 {
    0% { background-position-x: 0; }
    100% { background-position-x: -1000px; }
}
