/*
Theme Name: The Pour Pair
Theme URI: https://example.com/the-pour-pair
Author: Felmardotdev
Author URI: https://github.com/felmardotdev
Description: A premium, fully customizable mixology WordPress theme. Features glassmorphism design, vibrant gradients, and dynamic content management.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pourpair
Tags: dark, modern, chemicals, mixology, custom-colors, full-site-editing
*/

/* 
 * Note: Main styling is handled by Tailwind CSS (CDN for development).
 * Custom CSS from original index.html follows below.
 */

body {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.font-orbitron {
    font-family: 'Orbitron', sans-serif;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradient 15s ease infinite;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.neon-glow-pink {
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.3);
}

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

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

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444;
}