/* =========================================================
   Muffin Man Games — Cleaned & Modernized Stylesheet
   ========================================================= */

/* ---------- 1. Reset & Base Styles ---------- */

html, body {
  margin: 0;
  padding: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  background-color: #213456;
  color: whitesmoke;
  font: 14px/1.4 'Trebuchet MS', Arial, Helvetica, sans-serif;
}

a {
  color: #ffec9f;
  text-decoration: none;
}

a:hover {
  color: #e78630;
  text-shadow: 0 0 1px #000;
}

/* ---------- 2. Header ---------- */

#mmg-header {
  background: linear-gradient(#324f82, #213456, #213456, #213456, #324f82);
  text-shadow: 0 0 3px #000, 0 0 2px #000, 0 0 1px #000;

  display: flex;
  align-items: center;        /* vertically centers logo + text */
  gap: 2rem;                  /* space between logo and text */
  padding: 0 2rem;            /* horizontal breathing room */

  height: 8vw;
  max-height: 163px;
}

/* Logo stays simple */
#mmg-header-logo {
  height: 8vw;
  max-height: 155px;
}

/* Wrap title + tagline together */
.header-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

/* Title */
#mmg-blog-title {
  font-size: clamp(28px, 4vw, 60px);
}

/* Tagline */
#mmg-tag-line {
  font-size: clamp(16px, 2vw, 32px);
  color: lightgray;
}


/* ---------- 3. Navigation Menu ---------- */

.mmg-menu {
  background-color: #9b5900;
  border-style: solid none;
  border-color: #f68c00 #000 #693c00;
  border-width: 1px;
  font-size: 1.5em;
  font-variant: small-caps;

  display: flex;
  justify-content: center;
  gap: 1.5rem;

  padding: 0.5rem 0;
}

.mmg-menu-link {
  color: #ffec9f;
  padding: 0 5px;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.mmg-menu-link:hover {
  color: #ffffff;
  text-shadow: 0 0 6px #ffd27f;
}

/* ---------- 4. Content Boxes ---------- */

.mmg-game-box {
  background-color: #162239;
  border-radius: 10px;
  box-shadow: 0 0 6px #f7d565;
  margin: 10px 2%;
  padding: 12px;
  width: 96%;
}

.mmg-news-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 6px;
}

/* ---------- 5. Footer ---------- */

#mmg-footer-short {
  position: fixed;
  left: 0;
  bottom: 2px;
  width: 100%;
  text-align: center;
  padding-top: 10px;
}

#mmg-footer-long {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 10px 0 5px;
}

/* ---------- 6. Large Screen Tweaks ---------- */

@media all and (min-width: 1925px) {
  #mmg-blog-title {
    font-size: 78px;
    left: 165px;
  }

  #mmg-tag-line {
    font-size: 38px;
    left: 860px;
  }
}
