/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

html {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  background-color: #000;
}

body {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Utility Classes */
.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navigation__container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, #000, transparent);
  padding: 1rem 0;
  z-index: 1000;
}

.navigation__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navigation__link {
  color: #fff;
  text-transform: uppercase;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.875rem;
  margin: 0 1rem;
}

.navigation__brand {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.5rem;
  color: #fff;
}

/* Hero Section */
.hero-ribbon-section {
  background: linear-gradient(to bottom, transparent, #000), url('../img/hero-bg.jpg') no-repeat center/cover;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.large-heading {
  font-size: 4rem;
  text-transform: uppercase;
  font-family: 'Roboto Mono', monospace;
  margin: 0;
}

.title {
  font-family: 'Roboto Mono', monospace;
  text-transform: uppercase;
  font-size: 1rem;
  color: #fff;
}

.sub {
  font-size: 0.875rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.no-padding-bottom {
  padding-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
  }
}

/* Slider */
.slider {
  position: relative;
  margin-top: 2rem;
}

.mask {
  overflow: hidden;
  display: flex;
}

.slide {
  flex: 0 0 100%;
  position: relative;
}

.slider-image {
  width: 100%;
  border-radius: 1rem;
}

.slider-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.slider-load-track {
  flex-grow: 1;
  height: 2px;
  background: #333;
  margin-left: 1rem;
}

.slider-load-progress {
  height: 100%;
  background: #fff;
  width: 0;
  transition: width 0.3s ease;
}

.left-arrow, .right-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.left-arrow {
  left: 1rem;
}

.right-arrow {
  right: 1rem;
}

/* Game Section */
.game-frame {
  margin: 2rem 0;
}

.game-frame iframe {
  width: 100%;
  height: 540px;
  border: none;
}

/* Footer */
.footer {
  background: #000;
  padding: 2rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}

.logo-wrap {
  background: #333;
  padding: 1rem;
  border-radius: 1rem;
}

.opacity-white-text {
  color: #ccc;
  font-size: 0.875rem;
}

/* Form */
.form-wrapper {
  margin-top: 2rem;
}

.form-2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-field {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
}

.text-area {
  height: 100px;
}

.button {
  background: #81360b;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
}

.w-form-done, .w-form-fail {
  display: none;
  padding: 1rem;
  background: #ddd;
  margin-top: 1rem;
}

/* Media Queries */
@media (max-width: 768px) {
  .navigation__inner {
    flex-direction: column;
    align-items: flex-start;
  }
	
	.navigation__link {
		display:none;
	}

  .navigation__link {
    margin: 0.5rem 0;
  }

  .hero-ribbon-section {
    height: 30vh;
  }

  .large-heading {
    font-size: 2.5rem;
  }

  .slider-image {
    height: 200px;
  }

  .game-frame iframe {
    height: 300px;
  }
}