/* --- 1. SITE-WIDE TYPOGRAPHY --- */
body, p, h1, h2, h3, h4, h5, h6 {
    font-family: 'Minion Pro', serif !important;
}

/* --- 2. HEADER: ONE-LINE MENU & LOGO FIX --- */

/* Expand the header inner containers to the full edges of the screen */
.vamtam-header-inner, 
.site-header-inner, 
.header-content,
.vamtam-header-mobile-fixed {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 98% !important; /* Forces the header to use the full width of the screen */
    margin: 0 auto !important;
}

/* Preserve Logo space on the left */
.logo-wrapper, .site-logo, .header-logo, .vamtam-logo-container {
    flex: 0 0 auto !important;
    min-width: 200px !important;
    display: block !important;
}

/* Force the Navigation to expand and strictly stay on one line */
.vamtam-main-menu-container, 
.header-navigation,
.main-navigation {
    flex: 1 1 auto !important;
    display: flex !important;
    justify-content: flex-end !important;
    min-width: 0 !important;
}

.vamtam-main-menu, .nav-menu, .main-navigation ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; /* This is the hard lock for one line */
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* Font Style, Gold Color, and Tightened Spacing */
.vamtam-main-menu > li > a, 
.vamtam-main-menu > li > a span, 
.nav-menu li a {
    font-family: 'Arial Black', Gadget, sans-serif !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    color: #B18746 !important;
    white-space: nowrap !important;
    padding: 10px 12px !important; /* Reduced padding slightly to ensure fit */
    font-size: 14px !important;
    text-decoration: none !important;
}

/* --- 3. AGGRESSIVE HIDE: BREADCRUMBS, TITLES & BLUE BAR --- */

/* Targets the specific blue bar and the white 'HOME' text shown in your screenshot */
.vamtam-page-header, 
.vamtam-breadcrumb, 
.vamtam-breadcrumb-wrapper,
.header-post-title-container,
.vamtam-post-header-meta,
.vamtam-post-header-meta-container,
.post-meta,
.entry-meta,
.breadcrumb,
.breadcrumbs,
.page-header,
.entry-title,
.page-title {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
}

/* --- 4. PRACTICE AREA ALIGNMENT (SHIELDED) --- */
.wp-block-columns {
    display: flex !important;
    align-items: stretch !important;
}

.wp-block-column > .is-style-box-shadow-one {
    flex: 1 !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    padding: 30px 25px 95px 25px !important; 
}

.is-style-box-shadow-one .wp-block-buttons {
    position: absolute !important;
    bottom: 35px !important; 
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
}

/* --- 5. FOOTER STYLING --- */
.site-footer, .vamtam-footer { background-color: #393056 !important; }
.site-footer p, .site-footer a { color: #ffffff !important; }

/* --- 9. BREADCRUMB WRAPPER COLOR CHANGE (FORCE) --- */

/* Targets the outermost structural container of the title bar */
#vamtam-header-container + div,
.vamtam-page-header,
.vamtam-breadcrumb-wrapper,
.header-post-title-container,
section.vamtam-page-header {
    background-color: #393056 !important; /* Your New Color */
    background-image: none !important;    /* Removes any theme patterns */
    border: none !important;
}

/* Forces the inner padding and text alignment */
.vamtam-page-header .vamtam-header-inner,
.header-post-title-container .vamtam-header-inner {
    background-color: transparent !important; /* Prevents double-coloring */
    padding: 20px 0 !important;
}

/* Optional: Ensure the text inside is visible against the new color */
.vamtam-breadcrumb, 
.vamtam-breadcrumb a, 
.vamtam-breadcrumb span,
.header-post-title-container h1 {
    color: #ffffff !important;
    text-decoration: none !important;
}