/*
Theme Name: Scotty2x Theme
Author: Scotty2x
Version: 1.0
*/

body {
    background-color: #111;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.nav-bar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #000;
    margin: 0;
}

.nav-bar ul li {
    margin: 0 15px;
}

.nav-bar ul li a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.nav-bar ul li a:hover {
    color: gold;
    box-shadow: 0 0 10px gold;
}

.home-intro {
    text-align: center;
    margin-top: 20%;
}

.logo-img {
    width: 300px;
    max-width: 90%;
}

.enter-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    color: white;
    border: 2px solid gold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.enter-button:hover {
    color: gold;
    background-color: #222;
    box-shadow: 0 0 10px gold;
}

/* Intro page layout fixes */

.home-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  background-color: #000;
  margin: 0;
}

.logo-img {
  max-width: 400px;
  width: 80%;
  height: auto;
  margin-bottom: 30px;
}

.enter-button {
  padding: 15px 40px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background-color: transparent;
  border: 2px solid gold;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.enter-button:hover {
  background-color: gold;
  color: black;
  box-shadow: 0 0 15px gold;
}

.enter-button:active {
  transform: scale(0.95);
}

.home-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: black;
  text-align: center;
  margin: 0;
  padding: 0;
}

.logo-img {
  max-width: 40%;
  height: auto;
  margin-bottom: 30px;
}

.enter-button {
  background-color: black;
  border: 2px solid gold;
  color: white;
  padding: 12px 30px;
  font-size: 1.2em;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 6px;
  cursor: pointer;
}

.enter-button:hover {
  background-color: gold;
  color: black;
  transform: scale(0.97);
}

.enter-button:active {
  transform: scale(0.93);
}

.logo-img {
  animation: fadeInScale 1.5s ease forwards;
  opacity: 0;
  transform: scale(0.8);
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.site-footer {
  text-align: center;
  padding: 20px;
  background-color: #000;
  color: #fff;
  position: relative;
  bottom: 0;
  width: 100%;
}

.intro-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: black;
}

.intro-logo {
  width: 300px;
  height: auto;
  animation: fadeIn 2s ease-in-out;
  margin-bottom: 40px;
}

.enter-button {
  padding: 12px 28px;
  background-color: transparent;
  border: 2px solid gold;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.enter-button:hover {
  background-color: gold;
  color: black;
  transform: scale(0.97);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}