/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald&family=Roboto&display=swap');

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #1B1B2F;
  color: #EEEEEE;
}

/* SITE HEADER */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #D72638;      /* your red */
  padding: 0.5rem 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Logo + title container */
.logo-wrap {
  display: flex;
  align-items: center;
}

/* Dark pill behind the logo */
.logo-bg {
  background-color: #1B1B2F;   /* deep dark */
  padding: 6px;                /* space around the logo */
  border-radius: 4px;          /* soften edges */
  display: inline-block;
  margin-right: 1rem;          /* gap before the heading */
}

/* Make sure the img itself isn’t stretched */
.logo-bg img {
  display: block;
  max-height: 60px;
  width: auto;
}

/* Site title */
.logo-wrap h1 {
  margin: 0;
  font-family: 'Bebas Neue', cursive;
  color: #FFFFFF;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* LOGIN BUTTON */
.btn-login {
  display: inline-block;
  background-color: #00ADB5;        /* teal */
  color: #FFFFFF;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Oswald', sans-serif;
  transition: background-color 0.2s ease;
}
.btn-login:hover {
  background-color: #01979f;
}

/* NAVIGATION (if you use it) */
nav {
  background-color: #00ADB5;
  padding: 0.8rem;
  text-align: center;
}
nav a {
  color: #FFFFFF;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 600;
}

/* MAIN + SECTION + FOOTER (keep as before) */
main {
  padding: 20px;
}
section {
  margin-bottom: 40px;
}
section h2 {
  font-family: 'Oswald', sans-serif;
  color: #FFD369;
}
footer {
  background-color: #D72638;
  text-align: center;
  padding: 10px;
  color: #FFFFFF;
  position: fixed;
  width: 100%;
  bottom: 0;
}

video {
  display: block;
  margin: 2em auto;   /* vertical gap + horizontal centering */
  border-radius: 10px;
  width: 720px;
  max-width: 90%;
}

/* let the hero fill all space between header and footer */
.hero {
  flex: 1;                      /* takes all remaining vertical space */
  background-image: url('/images/action.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

