/* 
Theme Name: Song Sketches Records
Description: Custom theme for Song Sketches Records with WooCommerce integration
Author: Colin Payne
Version: 1.0
*/

<style>
.navbar-brand img {
            height: 120px;
            width: auto;
        }
        
        .navbar {
            box-shadow: 0 2px 4px rgba(0,0,0,.1);
        }
        
        .navbar-nav .nav-link {
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: #0d6efd !important;
        }
        
        /* Demo content styling */
        .demo-content {
            margin-top: 180px;
            padding: 40px 0;
        }
	/* Product Card Styling */
        .product-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,.15) !important;
        }
        
        .product-card .card-img-top {
            transition: background-color 0.3s ease;
            border-radius: 10px 10px 0 0;
        }
        
        .product-card:hover .card-img-top {
            background-color: #f8f9fa !important;
        }
        
        .product-card .btn {
            transition: all 0.3s ease;
        }
        
        .product-card .btn:hover {
            background-color: #0d6efd;
            color: white;
            border-color: #0d6efd;
        }
        
        .product-card .card-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .product-card .card-text {
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        /* Demo content styling */
        .demo-content {
            margin-top: 80px;
            padding: 40px 0;
        }
        /* Footer styles */
        footer {
            margin-top: auto;
        }

        .social-icons a {
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: #0d6efd !important;
        }

        /* Make sure body has min-height for sticky footer */
        body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        main {
            flex: 1;
        }
        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        @keyframes slideOut {
            from { transform: translateX(0); opacity: 1; }
            to { transform: translateX(100%); opacity: 0; }
        }
        
        .add-to-cart-btn:disabled {
            pointer-events: none;
        }
        /* Mobile responsiveness for larger logo */
        @media (max-width: 991.98px) {
            .navbar-brand img {
                height: 80px; /* Smaller on mobile */
            }
            
            .demo-content {
                margin-top: 100px; /* Adjust for mobile */
            }
        }
        
        /* Fix for WordPress admin bar collision */
        @media screen and (min-width: 783px) {
            body.admin-bar {
                padding-top: 32px;
            }
            
            body.admin-bar .navbar.fixed-top {
                top: 32px;
            }
        }
        
        @media screen and (max-width: 782px) {
            body.admin-bar {
                padding-top: 46px;
            }
            
            body.admin-bar .navbar.fixed-top {
                top: 46px;
            }
        }
        
        /* Adjust demo-content margin for admin bar */
        body.admin-bar .demo-content {
            margin-top: 212px; /* 180px + 32px for admin bar */
        }
        
        @media (max-width: 991.98px) {
            body.admin-bar .demo-content {
                margin-top: 166px; /* 120px + 46px for mobile admin bar */
            }
        }
</style>