/* 
Theme Name: Colin Payne Music 
Description: Custom style theme for Colin Payne Music (Shows), LLC with Bluehost/WooCommerce integration
Author: Colin Payne
Version: 2.0
*/

        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300&family=Inter:wght@100;200;300&family=Nunito:wght@200;300&family=Source+Sans+Pro:wght@200;300&family=Work+Sans:wght@100;200&display=swap');
        
        :root {
            --font_0: 'Poppins', 'Inter', 'Work Sans', 'Nunito', 'Source Sans Pro', 'Helvetica Neue UltraLight', 'Arial', sans-serif;
            --color_15: 255, 255, 255;
            --accent-color: #00bcd4;
        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font_0);
            line-height: 1.4;
            background-color: #f5f5f5;
            color: #333;
            padding: 40px 20px;
        }
        
        .navbar {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        min-height: 80px;
        }
        
        .navbar-nav .nav-link {
            font-family: var(--font_0);
            color: #666 !important;
            font-weight: 400;
            font-size: 0.9rem;
            margin: 0 15px;
            letter-spacing: 0.02em;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: #00bcd4 !important;
        }
        
        .navbar-nav .nav-link.active {
            color: #00bcd4 !important;
        }
    
        .performance-container {
            /*max-width: 1000px;*/
            margin: 0 auto;
            background: white;
            padding: 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .search-container {
            position: relative;
        }
        
        .search-input {
            border: 1px solid #ddd;
            border-radius: 25px;
            padding: 8px 15px;
            width: 200px;
            font-size: 14px;
        }
        
        .search-input:focus {
            border-color: #00bcd4;
            outline: none;
            box-shadow: 0 0 0 2px rgba(0, 188, 212, 0.2);
        }

        .search-container {
            margin-bottom: 30px;
            text-align: center;
        }

        .search-box {
            width: 100%;
            max-width: 400px;
            padding: 10px 15px;
            border: 2px solid #e5e5e5;
            border-radius: 50px;
            font-size: 16px;
            font-family: var(--font_0);
        }

        .search-box:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
        }


        h1 {
            font-size: 36px;
            font-weight: normal;
            margin-bottom: 10px;
            color: #333;
        }

        h2 {
            font-size: 28px;
            font-weight: normal;
            margin: 40px 0 20px 0;
            color: #333;
        }
        /* Hero Section */
        .hero-section {
            height: 65vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-section img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: 1;
        }
        hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: white;
            max-width: 600px;
            padding: 0 20px;
        }

        .hero-title {
            color: #FFFFFF;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 500;
            margin-bottom: 1rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            font-weight: 300;
            opacity: 0.95;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
        }

        .shows-image {
            padding-left:30px;
            padding-right:30px;
            margin-top: 80px;
            height: calc(100vh - 80px);
            display: flex;
            align-items: center;
            justify-content: flex-start;
            position: relative;
            overflow: hidden;
        }

        .responsive-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .show-item {
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 1px solid #eee;
        }

        .show-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .show-date {
            font-style: italic;
            font-size: 18px;
            margin-bottom: 5px;
            color: #333;
        }

        .show-title {
            font-size: 16px;
            margin-bottom: 3px;
            font-weight: normal;
            color: #333;
        }

        .show-time {
            font-size: 16px;
            margin-bottom: 3px;
            color: #333;
        }

        .show-venue {
            font-size: 16px;
            margin-bottom: 8px;
            color: #333;
        }

        .show-program {
            font-size: 16px;
            color: #333;
            line-height: 1.5;
        }

        .year-section {
            margin-bottom: 40px;
        }

        .year-section:last-child {
            margin-bottom: 0;
        }

        .no-results {
            text-align: center;
            color: #666;
            font-style: italic;
            margin: 40px 0;
        }

        .previous-concerts-toggle {
            text-align: center;
            margin: 30px 0;
        }

        .previous-concerts-link {
            color: var(--accent-color);
            text-decoration: none;
            font-size: 16px;
            cursor: pointer;
            border-bottom: 1px solid transparent;
            transition: border-bottom 0.3s ease;
        }

        .previous-concerts-link:hover {
            border-bottom: 1px solid var(--accent-color);
        }

        .past-concerts {
            display: none;
        }

        .past-concerts.visible {
            display: block;
        }

        @media (max-width: 600px) {
            .container {
                padding: 20px;
            }
            
            h1 {
                font-size: 28px;
            }
            
            h2 {
                font-size: 24px;
            }
        }