/*
Theme Name: McEgan College
Theme URI: https://preview-1058-db546a.wp-dub-03.webcore.cloud/
Author: Webcore
Description: Custom WordPress theme for McEgan College.
Version: 0.1.0
Text Domain: mcegan
*/

:root {
  --mcegan-green: #1f6b45;
  --mcegan-dark: #183128;
  --mcegan-cream: #f5f3eb;
  --mcegan-text: #24322d;
  --mcegan-white: #ffffff;
  --mcegan-max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--mcegan-text);
  background: var(--mcegan-white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: var(--mcegan-green); }
img { max-width: 100%; height: auto; }
.mc-wrap { width: min(calc(100% - 40px), var(--mcegan-max)); margin-inline: auto; }
.mc-site-header { border-bottom: 1px solid #e1e5e2; background: #fff; }
.mc-header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.mc-brand { color: var(--mcegan-dark); text-decoration: none; font-size: 1.35rem; font-weight: 800; }
.mc-nav ul { display: flex; flex-wrap: wrap; gap: 20px; margin: 0; padding: 0; list-style: none; }
.mc-nav a { color: var(--mcegan-dark); text-decoration: none; font-weight: 650; }
.mc-main { min-height: 55vh; }
.mc-hero { padding: 72px 0; background: var(--mcegan-cream); }
.mc-hero h1 { max-width: 780px; margin: 0 0 18px; color: var(--mcegan-dark); font-size: clamp(2.2rem, 5vw, 4.5rem); line-height: 1.02; }
.mc-hero p { max-width: 760px; margin: 0; font-size: 1.1rem; }
.mc-content { padding: 54px 0 72px; }
.mc-content > *:first-child { margin-top: 0; }
.mc-site-footer { padding: 40px 0; color: #dce7e1; background: var(--mcegan-dark); }
.mc-site-footer a { color: #fff; }
@media (max-width: 760px) {
  .mc-header-inner { align-items: flex-start; flex-direction: column; padding-block: 22px; }
  .mc-nav ul { gap: 12px 18px; }
  .mc-hero { padding: 50px 0; }
}
