body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #250e13;
  color: #fff;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: 1px;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1; 
}

p {
  font-weight: 300;
  text-decoration: none;
  color: white;
}

a {
	text-decoration: underline;
	color: white;
}

a:hover {
  opacity: 1;
  text-decoration: underline;
}

footer {
	color: white;
	text-decoration: none;
}

.gloria-hallelujah-regular {
  font-family: "Gloria Hallelujah", cursive;
  font-weight: 400;
  font-style: normal;
}

.main-header {
  padding: 25px 20px;
  min-height: max-content;

  /*background: linear-gradient(120deg, #fe8a43, #c5188d);*/
  background-image: url('images/wildrivalsheader.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  width: 180px; 
  height: auto;
  margin: 50px 0 90px 0;
}

.nav-btn {
  position: relative;
  display: inline-block;
  text-decoration: none;
  margin: 0 50px;
}

.nav-btn img {
  width: 120px;
  height: auto;
  max-width: 100%;
}

.nav-btn span {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);

  color: #250e13;
  font-family: "Gloria Hallelujah", cursive;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 3px #c5188d, 0 0 5px #fe8a43;

  pointer-events: none; /*to use later*/
}

nav a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.content {
  padding: 20px;
}

button {
  margin: 5px;
  padding: 8px 15px;
  background-color: #f8edef;
  border-style: solid;
  border-radius: 6px;
}

.forum-post, .team-card {
  background: #4a1c26;
  padding: 15px;
  border-radius: 6px;
  margin: 10px 0;
}

.center-text {
	text-align: center;
}

.site-footer {
  background: linear-gradient(90deg, #fe8a43, #c5188d);
  color: white;
  padding: 5px 5px;
  margin-top: 60px;
  font-family: 'Montserrat', sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-section p {
  margin: 0;
  font-weight: 300;
  opacity: 0.8;
}

.footer-section a {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  transition: 0.25s;
}

.footer-section a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-socials {
  display: flex;
  flex-direction: column;
}

.footer-bottom {
  text-align: center;
  color: white; 
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.85rem;
  opacity: 0.6;
  border-top: 1px solid rgba(255,255,255,0.2);
}

