/*
Theme Name: National Water Pool Luxe
Theme URI: https://nationalwaterpool.com/
Author: National Water Pool
Author URI: https://nationalwaterpool.com/
Description: Ultra-Premium Swimming Pool Architecture, Turnkey Construction, and Water Engineering WordPress Theme with Native Theme Options & Drag-and-Drop Section Manager.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: national-water-pool
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, theme-options
*/

/* Core resets & frontend helper classes */
:root {
    --nwp-brand-primary: #0ea5e9;
    --nwp-brand-dark: #050e1d;
    --nwp-brand-navy: #0a192f;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #050e1d;
    color: #e2e8f0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Outfit', sans-serif;
}

/* Smooth Custom Scrollbar */
::-webkit-scrollbar {
    width: 9px;
}
::-webkit-scrollbar-track {
    background: #050e1d;
}
::-webkit-scrollbar-thumb {
    background: #0284c7;
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
    background: #38bdf8;
}

/* Glassmorphism Styles */
.glass-card {
    background: rgba(10, 25, 47, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card-hover {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card-hover:hover {
    transform: translateY(-6px);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 15px 35px -10px rgba(14, 165, 233, 0.3);
}

.glass-nav {
    background: rgba(5, 14, 29, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(56, 189, 248, 0.12);
}

/* Animations */
@keyframes waveFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}
.animate-float {
    animation: waveFloat 6s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50% { opacity: 0.65; transform: scale(1.05); }
}
.animate-pulse-glow {
    animation: pulseGlow 5s ease-in-out infinite;
}

/* Comparison Slider Thumb */
.comparison-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #0ea5e9;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.8);
    cursor: ew-resize;
}
.comparison-slider::-moz-range-thumb {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #0ea5e9;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.8);
    cursor: ew-resize;
}
