/*
Theme Name: Manila Nights (MANIKARA)
Theme URI: https://example.com/manikara
Author: Antigravity
Author URI: https://example.com
Description: A custom WordPress theme for Manila Nightlife Guide.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: manikara
*/

/* =========================================
   Global Styles (Extracted from index.html)
   ========================================= */

body {
    background-color: #050511;
    color: #ffffff;
    overflow-x: hidden;
    /* Space for mobile nav is handled in footer or dynamically */
}

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

::-webkit-scrollbar-track {
    background: #050511;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff2a6d, #d209fa);
    border-radius: 4px;
}

/* Neon Glow Utility */
.neon-text-pink {
    text-shadow: 0 0 5px #ff2a6d, 0 0 10px #ff2a6d, 0 0 20px #ff2a6d;
}

.neon-text-blue {
    text-shadow: 0 0 5px #05d9e8, 0 0 10px #05d9e8;
}

.neon-box {
    box-shadow: 0 0 10px rgba(5, 217, 232, 0.2), inset 0 0 20px rgba(5, 217, 232, 0.1);
    border: 1px solid rgba(5, 217, 232, 0.3);
}

/* Glassmorphism */
.glass {
    background: rgba(15, 16, 38, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hero Text Animation */
.clip-text-image {
    background-image: url('https://images.unsplash.com/photo-1550684848-fac1c5b4e853?q=80&w=2670&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    color: rgba(255, 255, 255, 0.1);
    background-attachment: fixed;
}

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050511;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #333;
    border-top: 3px solid #ff2a6d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Bottom Nav */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 17, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: env(safe-area-inset-bottom);
}
