/* ---------------------------------------
   GLOBAL RESET / BASE STYLES
---------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #000;
  color: #e7e7e7;
  font-family: 'BodyText', serif;
  line-height: 1.2;
  cursor: url('./Images/MachineWeek/General/cursor1.png') 16 16, auto;
}

a:hover, button:hover {
  cursor: url('./Images/MachineWeek/General/cursor1-hover.png') 16 16, pointer;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  cursor: url('./Images/MachineWeek/General/cursor1-hover.png') 16 16, pointer;
}


.main-page {
  width: 100%;
  margin: 0 auto;
  overflow: visible;
}

/* ---------------------------------------
   FONTS
---------------------------------------- */
@font-face {
  font-family: 'BodyText';
  src: url('./fonts/BodyText_NightPorter.otf') format('opentype');
  
}

@font-face {
  font-family: 'HeaderSpiky';
  src: url('./fonts/Header_SpikyText.otf') format('opentype');
 
}

/* ---------------------------------------
   HEADER (Title Section)
---------------------------------------- */

.ouija-header {
  text-align: center;
  padding: 120px 20px 40px;
  max-width: auto;
  letter-spacing: 2.5em;
  font-stretch: expanded;
  margin: auto;
}

.gif-header img {
  width: 100%;
  height: auto;
  display: block;
}


.ouija-header .line1 {
  font-family: 'HeaderSpiky', sans-serif;
  font-size: 6.0rem;
}

.ouija-header .line2 {
  font-family: 'HeaderSpiky', sans-serif;
  font-size: 4.0rem;
  margin-top: 8px;
}

.ouija-header .line3 {
  font-family: 'HeaderSpiky', sans-serif;
  font-size: 3.5rem;
  margin-top: 6px;
}

/* ---------------------------------------
   TOP NAV / TOOLBAR
---------------------------------------- */

.toolbar {
  width: 100%;
  background-color: #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.toolbar a {
  color: hsl(230, 100%, 50%);
  font-family: 'HeaderSpiky'; sans-serif;
  font-size: 3.5rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.toolbar a:hover {
  opacity: 0.7;
}

/* ---------------------------------------
   CONTENT WRAPPER (Reusable by all groups)
---------------------------------------- */
/* GLOBAL RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.content-wrapper {
  max-width: 960px;      /* or 800px, etc. */
  margin: 40px auto;     /* centers in the window */
  padding: 0 24px 80px;  /* left/right padding so text doesn’t touch edges */
}

.content-wrapper h2 {
  font-family: 'BodyText', sans-serif;
  margin-bottom: 15px;
  font-stretch: expanded;
  letter-spacing: 0.15em;
   font-size: 3.0rem;
}

.content-wrapper h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-family: 'BodyText', sans-serif;
}

.content-wrapper p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #c5c5c5;
  font-family: 'Times New Roman', Times, serif;

}

.content-wrapper img {
  width: 100%;
  max-width: 66%;
  height: auto;
  margin: 20px auto;
  display: block;
}

.content-wrapper ol,
.content-wrapper ul {
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.content-wrapper li {
  margin-bottom: 6px;
}

.content-wrapper hr {
  margin: 30px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.header-gif img {
  width: 120px;   /* change to any size */
  height: auto;
}


.hero-image-placeholder {
  width: 100%;
  max-width: 1200px;   /* adjust as needed */
  margin: 20px auto;
  display: block;
}

.hero-image-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}
