/*
Theme Name: Optimize Monster Retro
Theme URI:  https://example.com/
Author:      Mike McPeak
Description: 80s‑retro theme with hero image and neon nav.
Version:     1.0
Text Domain: optimize-monster
*/

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: Calibri, sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero image */
.hero img {
  width: 66%;
  max-height: 240px;
  object-fit: cover;
  display: block;
}

/* Main navigation */
.main-nav {
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;           /* puts the <li> items in a row */
  flex-direction: row;     /* explicit row orientation */
  justify-content: center; /* center the whole menu */
}

.main-nav li {
  display: inline-block;   /* make each item sit side by side */
  margin: 0 1.5rem;        /* space them out */
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

/* Emoji bullets */
ul.custom-list {
  list-style: none;
  padding-left: 0;
}

ul.custom-list li::before {
  content: "👉";
  margin-right: 0.5rem;
}
