/*
Theme Name: Beans Adventure
Theme URI: https://bandofbeans.co.uk
Author: Band of Beans
Author URI: https://bandofbeans.co.uk
Description: Custom theme for Band of Beans coffee adventure
Version: 1.0.0
Text Domain: beans-adventure
*/

/* Basic styles to prevent blank page */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.site-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Remove padding on homepage to match other pages */
body.home .site-content {
    padding: 0;
    max-width: 100%;
}

/* WooCommerce basic compatibility */
.woocommerce-page .content {
    width: 100%;
}

/* Header Sophistication Style Guide Updates */

/* Header main layout improvements */
.header-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Navigation centered between logo and CTAs */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 2rem;
}

.nav-items {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* Enlarged navigation labels per sophistication guide */
.nav-item {
    text-decoration: none;
    color: #333;
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-item:hover {
    color: #7E5D4C;
}

.nav-item.active {
    color: #7E5D4C;
    font-weight: 600;
}

/* Header actions layout */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Cultural Passport CTA reduced width (15% smaller) */
.header-passport-compact {
    padding: 0.6rem 1rem !important;
    font-size: 0.9rem !important;
    min-width: auto !important;
}

/* Search icon moved to far right */
.search-toggle {
    order: 10;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

.mobile-menu-toggle {
    order: 11;
}

/* Primary CTA prominence */
.header-cta {
    background: #C9CC68 !important;
    color: #333 !important;
    font-weight: 600 !important;
    padding: 0.7rem 1.5rem !important;
}

.header-cta:hover {
    background: #B8865E !important;
    color: white !important;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .main-navigation {
        margin: 0 1rem;
    }
    
    .nav-items {
        gap: 1.5rem;
    }
    
    .nav-item {
        font-size: 1.56rem;
    }
}

@media (max-width: 768px) {
    .header-main-content {
        flex-wrap: wrap;
    }
    
    .main-navigation {
        order: 3;
        width: 100%;
        margin: 1rem 0;
        justify-content: center;
    }
    
    .nav-items {
        justify-content: center;
        gap: 1rem;
    }
    
    .header-passport-compact {
        display: none;
    }
}