@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background-color: #020617; color: white; overflow-x: hidden; }

/* Luxury Theme */
.beach-theme {
    background: linear-gradient(rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.85)), 
                url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed; background-size: cover; background-position: center; min-height: 100vh;
}

.gold-text { color: #d4af37; }

/* Glassmorphism */
.card-premium {
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* THE ANIMATED WILDLIFE EFFECT */
.wildlife-container { overflow: hidden; border-radius: 60px; height: 500px; }
.wildlife-img {
    width: 100%; h-full; object-cover;
    transition: transform 15s linear; /* Very slow cinematic zoom */
}
.card-premium:hover .wildlife-img { transform: scale(1.4); }

/* Favicon Style */
.nav-logo-icon { width: 20px; margin-right: 10px; filter: sepia(1) saturate(5) hue-rotate(10deg); }

/* Preloader */
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #020617; display: flex; justify-content: center; align-items: center; z-index: 9999; }
.loader-logo { width: 50px; height: 50px; border: 3px solid #d4af37; border-top-color: transparent; border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }

footer { background: rgba(0,0,0,0.9); border-top: 1px solid rgba(255,255,255,0.1); }
