/* Template winery Styles */
:root {
            --winery-burgundy: #5D001E;
            --winery-gold: #C5A059;
            --winery-cream: #F9F7F2;
            --winery-dark: #1A1A1A;
            --font-title: 'Playfair Display', serif;
            --font-body: 'Montserrat', sans-serif;
        }

        body {
            font-family: var(--font-body);
            color: var(--winery-dark);
            background-color: var(--winery-cream);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, .font-title {
            font-family: var(--font-title);
        }

        .text-burgundy { color: var(--winery-burgundy); }
        .text-gold { color: var(--winery-gold); }
        .bg-burgundy { background-color: var(--winery-burgundy); }
        .bg-cream { background-color: var(--winery-cream); }

        /* Navbar */
        .navbar {
            padding: 30px 0;
            transition: all 0.4s ease;
            background: transparent;
            z-index: 1050;
        }
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            padding: 15px 0;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
            backdrop-filter: blur(10px);
        }
        .navbar-brand {
            font-family: var(--font-title);
            font-weight: 800;
            font-size: 1.8rem;
            letter-spacing: 1px;
            color: #fff !important;
        }
        .navbar.scrolled .navbar-brand { color: var(--winery-burgundy) !important; }
        
        .nav-link {
            color: #fff !important;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin: 0 15px;
            position: relative;
        }
        .navbar.scrolled .nav-link { color: var(--winery-dark) !important; }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 1px;
            background: var(--winery-gold);
            transition: 0.3s;
            transform: translateX(-50%);
        }
        .nav-link:hover::after, .nav-link.active::after { width: 100%; }
        .nav-link:hover { color: var(--winery-gold) !important; }

        .btn-winery {
            background: var(--winery-burgundy);
            color: #fff;
            border: 1px solid var(--winery-burgundy);
            padding: 12px 35px;
            border-radius: 0;
            font-weight: 600;
            letter-spacing: 2px;
            transition: 0.3s;
            text-transform: uppercase;
            font-size: 0.8rem;
        }
        .btn-winery:hover {
            background: transparent;
            color: var(--winery-burgundy);
        }

        .btn-outline-winery {
            background: transparent;
            color: #fff;
            border: 1px solid #fff;
            padding: 12px 35px;
            border-radius: 0;
            font-weight: 600;
            letter-spacing: 2px;
            transition: 0.3s;
            text-transform: uppercase;
            font-size: 0.8rem;
        }
        .btn-outline-winery:hover {
            background: #fff;
            color: var(--winery-burgundy);
        }

        section { padding: 120px 0; }
        .section-subtitle {
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--winery-gold);
            font-weight: 700;
            display: block;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        .section-title {
            font-size: 3.5rem;
            margin-bottom: 30px;
            font-weight: 700;
        }

        /* Custom Separator */
        .separator {
            width: 100px;
            height: 2px;
            background: var(--winery-gold);
            margin: 30px auto;
            position: relative;
        }
        .separator::after {
            content: '\F62D';
            font-family: 'bootstrap-icons';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--winery-cream);
            padding: 0 10px;
            color: var(--winery-gold);
        }

        /* Preloader */
        #preloader {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: var(--winery-burgundy);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .wine-glass-icon {
            color: var(--winery-gold);
            font-size: 3rem;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.5; }
            100% { transform: scale(1); opacity: 1; }
        }
    
        /* Mobile Menu Optimization - Titan Elite Global Patch */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: white !important;
                padding: 40px !important;
                margin-top: 15px !important;
                box-shadow: 0 40px 100px rgba(0,0,0,0.2) !important;
                border-top: 4px solid var(--primary-color, var(--pizza-red, var(--acc-navy, var(--gym-green, #000)))) !important;
                max-height: 85vh !important;
                overflow-y: auto !important;
                border-radius: 0 0 20px 20px !important;
            }
            .navbar-nav .nav-link {
                color: #333 !important;
                padding: 15px 0 !important;
                border-bottom: 1px solid rgba(0,0,0,0.05) !important;
                text-align: center !important;
            }
            .navbar-nav li:last-child .nav-link { border-bottom: none !important; }
            .navbar-brand { font-size: 1.4rem !important; }
            .navbar-toggler { border: none !important; padding: 10px !important; }
        }

