html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px; /* This should match the height of your banner */
}

body{
    background: rgb(17, 17, 17);
}

html, body {
  cursor: url("images/cursor_normal_small_v2.png") 10 5, auto;
}

a, button, [role="button"], input[type="button"], input[type="submit"] {
  cursor: url("images/cursor_open_small_v2.png") 10 5, auto;
}

#game-container {
    width: 100vw;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

@font-face {
    font-family: 'Minima';
    src: url('fonts/MinimaExpanded.woff2') format('woff2');
    font-weight: lighter;
    font-style: normal;
}
@font-face {
  font-family: 'rimouski';
  src: url('fonts/rimouski.otf') format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Anubismythicalserif';
  src: url('fonts/Anubismythicalserif-lxdLy.otf') format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'TaliOne';
  src: url('fonts/Tali1.ttf') format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'TaliTwo';
  src: url('fonts/TaliMorrisRoman-Black.ttf') format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'CenturyGothic';
  src: url('fonts/CenturyGothicRegular.otf') format("opentype");
  font-weight: normal;
  font-style: normal;
}

* {
    font-family: 'Minima', sans-serif;
    margin: 0%;
    padding: 0;
    box-sizing: border-box;
    color : beige;
}

.info-section {
    width: 100%;
    margin: 40px auto;
    padding: 30px;
    background-color: #131212;

    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: grid;
    grid-template-columns: 1fr 2fr; 
    gap: 30px; 
    align-items: center; 
}

.info-section h1 {
    font-size: 50px;
    color: beige;
    text-align: right; 
    padding-right: 30px; 
    border-right: 2px solid beige;
}

.info-section p {
    font-size: 30px;
    line-height: 1.7;
    color: #ddd;    
}

.info-modules-container {
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
    padding: 20px;
    gap: 20px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    
}

.info-module {
    border: 1px solid white;
    border-radius: 10px;
    padding: 50px;
    text-align: center;
    min-width: 330px;
    max-width: 400px;
    transition: transform 0.3s ease;
}

.info-module img {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
    border-radius: 10px;
}
#TeamLogo
{
    width: 300px;
    height: 300px;
}

.info-module:hover {
    transform: translateY(-10px);
}

.info-module h3 {
    font-size: 30px;
}
.info-module p{
    margin-top: 20px;
    font-size: 20px;

}
#TeamInfoP
{
    margin-top: 30px;
    max-width: 100%;
    font-size: 25px;
    line-height: 40px;
    
}

#GameInfoP
{
    margin-top: 30px;
    max-width: 100%;
    font-size: 25px;
    line-height: 40px;
    
}

.boxButtonOpen img {
    width: 150px;
    height: auto;
}

.banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
}

.banner-content {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-name {
  font-size: 1.8em;
  letter-spacing: 2px;
  font-weight: bold;
  color: #ff2e2e;
}

.project-name a {
  text-decoration: none;
  color: inherit;
}

.nav-links {
  display: flex;
  gap: 2em;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  font-weight: 500;
  transition: color 0.3s, transform 0.2s;
}

.nav-links a:hover {
  color:  #ff2e2e;
  transform: scale(1.1);
}

body {
  padding-top: 70px;
}

footer {
  background-color: #000;
  color: beige;
  padding: 20px 40px;
  border-top: 2px solid #b22222;
  width: 100%;
  margin-top: 80px;
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left p {
  margin: 2px 0;
  font-size: 0.9;
}

.footer-left strong {
  color: #ff3333;
}

.footer-right a {
  color: beige;
  margin-left: 15px;
  font-size: 1.3;
  transition: all 0.3s ease;
}

.footer-right a:hover {
  color: beige;
  transform: scale(1.2);
}

@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    margin-top: 10px;
  }
}
