
body{
  font-family: 'Rajdhani', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ADD8E6;
  text-align: center;
}

.logo{
    width: 100%;
  max-width: 400px; /* or 200px if you prefer */
  height: auto;
  display: block;
  margin: 20px auto 0 auto;
  /* Remove float: center; (not valid) */
  padding-top: 20px;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #333;
  font-family: 'Orbitron', sans-serif;
  flex-wrap: wrap;
}
.nav-links a {
  color: white;
  text-decoration: none;
  padding: 10px;
}
.nav-links a:hover {
  background-color: #555;
}
.nav-links .logo {
  font-size: 24px;
  font-weight: bold;
}
.nav-links .menu {
  display: flex;
  gap: 15px;
}
.nav-links .menu a {
  font-size: 18px;
}

/* Responsive styles */
@media (max-width: 600px) {
  .nav-links {
    flex-direction: column;
    padding: 6px;
  }
  .nav-links .logo {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .nav-links .menu {
    gap: 8px;
  }
  .nav-links .menu a {
    font-size: 15px;
    padding: 6px;
  }
}
h1 {
  font-size: 36px;
  color: #333;
  text-align: center;
  margin-top: 20px;
}
#beg_quest {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  text-align: center;
}

.answers label {
  font-weight: normal;
}

#button {
  background-color: darkblue;
  color: white;
  border: 5px;
  border-radius: 20px;
  box-shadow: 3px 3px gray;
  padding: 5px 15px;
  min-height: 30px;
  min-width: 120px;
  font-family: 'Rajdhani';
}

#button:hover {
  background-color: blue;
  transition: 0.2s;
}

#button:focus {
  outline-color: transparent;
  outline-style: solid;
  box-shadow: 0 0 0 4px lightblue;
  transition:0.2s;
}
#button:active {
  background-color: rgb(8, 149, 196);
}
.answers {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

input[type=radio] {
  border: 0px;
  width: 100%;
  height: 2em;
}

#result {
  font-weight: bold;
}

#endorphin {
  text-align: left;
  width: 200px;
  height: auto;
  border-radius: 10px;
  margin-top: 10px;
}

#Metaspeed {
  text-align: right;
  width: 200px;
  height: auto;
  border-radius: 10px;
  margin-top: 10px;
}

@media (max-width: 600px) {
  #endorphin,
  #Metaspeed {
    width: 120px;
  }
}

.shoe-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px; 
  margin: 30px 0;
}

.shoe-banner-text {
  text-align: center;
  max-width: 400px;
}

.howto {
  margin-left: 8vw;
  margin-right: 8vw;
}

@media (max-width: 600px) {
  .howto {
    margin-left: 3vw;
    margin-right: 3vw;
  }
}

.brandbutton-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.brandbutton {
  width: 90vw;
  max-width: 500px;
  min-width: 160px;
  box-sizing: border-box;
  background-color: darkblue;
  color: white;
  border: 5px;
  border-radius: 20px;
  box-shadow: 3px 3px gray;
  padding: 5px 15px;
  min-height: 50px;
  font-family: 'Rajdhani';
  font-size: 5vw;
  transition: background-color 0.2s;
}

@media (min-width: 600px) {
  .brandbutton {
    font-size: 22px;
    width: 100%;
    max-width: 500px;
  }
}

.brandbutton:hover {
  background-color: blue;
}

.brandbutton:focus {
  outline-color: transparent;
  outline-style: solid;
  box-shadow: 0 0 0 4px lightblue;
}
.brandbutton:active {
  background-color: rgb(8, 149, 196);
}

#topshoesbody {
  margin-right: 50px;
  margin-left: 50px;
}

.main {
  margin-right: 50px;
  margin-left: 50px;
}

@media (max-width: 600px) {
  #topshoesbody,
  .main {
    margin-right: 10px;
    margin-left: 10px;
  }
}

footer {
  background-color: #222;  /* Dark footer background */
  padding: 20px 0;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  color: #ccc;
}

.footer-nav-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 0;
  margin: 0 0 16px 0;
  list-style: none;
  flex-wrap: wrap;
}

.footer-nav-links li {
  margin: 0;
}

.footer-nav-links a {
  color: #ccc;
  text-decoration: none;
  padding: 8px 16px;
  font-size: 18px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 6px;
}

.footer-nav-links a:hover {
  background-color: #444;
  color: white;
}

.footer-copy {
  font-size: 14px;
  opacity: 0.7;
  margin: 0;
}


/* Responsive adjustments for very small screens */
@media (max-width: 600px) {
  .footer-nav-links {
    gap: 3vw;
    margin-bottom: 4vw;
  }
  .footer-nav-links a {
    font-size: 4vw;
    padding: 2vw 3vw;
  }
  .footer-copy {
    font-size: 3vw;
  }
}