/*
Theme Name: Meuser Consulting
Theme URI: https://meuser-consulting.com
Author: Meuser Consulting
Author URI: https://meuser-consulting.com
Description: Custom WordPress theme converted from the meuser-consulting.com static site. Recreates the Bootstrap-based brand & program management layout with full Gutenberg block support.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: meuser-consulting
Tags: business, consulting, custom-menu, full-width-template, featured-images, two-columns, four-columns
*/

:root {
  --mc-navy: #002060;
  --mc-text: #383E42;
  --mc-bg: #f4f4f6;
  --mc-light: #ffffff;
  --mc-dark: #212529;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', 'Helvetica Neue Light', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--mc-text);
  line-height: 1.5;
  background: #fff;
}

a { color: var(--mc-navy); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

/* Top navigation */
.mc-navbar {
  background: var(--mc-dark);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.mc-navbar ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}
.mc-navbar ul li a {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  padding: 0.5rem 0;
  display: inline-block;
}
.mc-navbar ul li a:hover { color: #fff; text-decoration: none; }
.mc-navbar ul li.has-dropdown { position: relative; }
.mc-navbar ul li.has-dropdown > a::after {
  content: " \25BE";
  font-size: 0.8em;
}
.mc-navbar ul li .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  z-index: 100;
  padding: 0.5rem 0;
}
.mc-navbar ul li .dropdown a {
  display: block;
  padding: 0.4rem 1rem;
  color: var(--mc-dark);
  font-size: 15px;
}
.mc-navbar ul li .dropdown a:hover { background: #f0f0f0; }
.mc-navbar ul li.has-dropdown:hover .dropdown,
.mc-navbar ul li.has-dropdown:focus-within .dropdown { display: block; }

.mc-social { display: flex; gap: 0.4rem; }
.mc-social img { width: 40px; height: 40px; transition: opacity 0.2s; }
.mc-social a:hover img { opacity: 0.75; }

.mc-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .mc-toggle { display: inline-block; }
  .mc-navbar { padding: 0.5rem; }
  .mc-nav-wrap { order: 3; flex-basis: 100%; display: none; }
  .mc-nav-wrap.open { display: block; }
  .mc-navbar ul { flex-direction: column; gap: 0.25rem; padding: 0.5rem 0; }
  .mc-navbar ul li .dropdown { position: static; box-shadow: none; padding-left: 1rem; }
  .mc-navbar ul li.has-dropdown:hover .dropdown { display: none; }
  .mc-navbar ul li.has-dropdown.open .dropdown { display: block; }
}

/* Jumbotron / hero blocks */
.mc-jumbotron {
  background: var(--mc-bg);
  padding: 2.5rem 1rem;
  text-align: center;
  margin: 0;
}
.mc-jumbotron .mc-logo { max-width: 400px; width: 100%; height: auto; }
.mc-quote {
  max-width: 720px;
  margin: 1.5rem auto 0;
  font-size: 20px;
  font-style: italic;
  color: var(--mc-navy);
  line-height: 1.5;
}
.mc-quote-author { margin-top: 1.25rem; }

/* Banner image */
.mc-banner { width: 100%; display: block; }
.mc-banner-wrap { margin: 0; }

/* Container */
.mc-container { max-width: 1140px; margin: 0 auto; padding: 1.5rem 1rem; }
.mc-container-sm { max-width: 960px; }

.mc-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.mc-row.text-center { text-align: center; }
.mc-row > .mc-full { grid-column: span 12; }

/* Two columns */
.mc-row.two-col > div { grid-column: span 6; text-align: center; }
@media (max-width: 768px) {
  .mc-row.two-col > div { grid-column: span 12; }
}

/* Four columns */
.mc-row.four-col > div { grid-column: span 3; text-align: center; }
@media (max-width: 992px) {
  .mc-row.four-col > div { grid-column: span 6; }
}
@media (max-width: 576px) {
  .mc-row.four-col > div { grid-column: span 12; }
}

.mc-row p { margin: 0.5rem 0; }
.mc-row img { display: inline-block; }

h1 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: var(--mc-text);
  font-size: 2rem;
  margin: 1.5rem 0 1rem;
  text-align: center;
}
.mc-section-title { color: var(--mc-navy); }

.mc-divider { border: 0; border-top: 1px solid #dee2e6; margin: 1.5rem 0; }

footer.mc-footer {
  text-align: center;
  padding: 1rem;
  font-size: 16px;
  color: var(--mc-text);
}

/* WordPress core overrides for compatibility */
.entry-content > * { max-width: none; }
.alignwide, .alignfull { max-width: 100%; }
