/* Import color variables */
@import url('colors.css');

/* define fonts*/
@font-face {
    font-family: 'highway_gothicregular';
    src: url("../fonts/hwygoth-webfont.woff2") format('woff2'),
         url("../fonts/hwygoth-webfont.woff") format('woff');
    font-weight: normal;
    font-style: normal;
}


* {
  box-sizing: border-box;
  font-family: 'highway_gothicregular', Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  margin: 0vh;
}

body {
  min-width: 550px;
  /* Let individual pages handle their own spacing based on menu needs */
}

/* Background classes */
.still {
  background-image: url('../images/indexbg.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.rules-background {
  background-image: url('../images/rulesbg.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.guides-background {
  background-image: url('../images/guidesbg.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.logistics-background {
  background-image: url('../images/logisticsbg.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

/* Video background for homepage */
video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

/* Content boundary system - controlled by menu.css */

/* Menu styles moved to menu.css */

/* Link styles */
a:link {
  color: var(--light-gray);
}

a:visited {
  color: var(--light-gray);
}

a:hover {
  color: var(--yellow);
}

a:active {
  color: var(--dark-yellow);
}

.disabled-header {
  color: var(--light-gray);
}

/* Footer */
footer {
  position: fixed;
  color: var(--white);
  background-color: var(--black);
  bottom: 0px;
  font-size: 10px;
  z-index: 50;
}

/* Error message styles */
.error-message {
  background-color: var(--error-bg) !important;
  color: var(--off-white);
  text-align: center;
  margin-bottom: 24px;
} 

/* Standardized content spacing for consistent layout across all pages */
.content-container {
  padding: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Content boundary system - pages use --menu-content-boundary for positioning */
.viewport-image,
.container {
  margin-top: var(--menu-content-boundary, 180px); /* Content boundary for container pages */
  max-width: 1200px;
  margin-left: 10%;
  margin-right: 10%;
}

.maintext {
  margin-top: calc(var(--menu-content-boundary, 180px) + 40px); /* Content boundary + 40px buffer for maintext pages */
} 