/* General Styling */
body {
  font-family: 'Cinzel', serif;
  background-color: #0d0d0d;
  color: #e6e6e6;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image: url('/images/dark-leather-texture.jpg');
  background-size: cover;
}

header {
  background-color: rgba(26, 26, 26, 0.85);
  padding: 30px;
  text-align: center;
  border-bottom: 2px solid #ff0000;
}

header .logo img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 0 10px #ff0000);
}

h1 {
  color: #ff0000;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.motto {
  font-style: italic;
  font-size: 1.4rem;
  color: #e6e6e6;
  margin-top: 10px;
}

.description {
  text-align: center;
  color: #b3b3b3;
  font-size: 1.2rem;
  margin: 30px auto;
  max-width: 900px;
  line-height: 1.6;
}

nav.navigation ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

nav.navigation ul li {
  position: relative;
}

nav.navigation ul li .nav-link {
  color: #ff0000;
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 25px;
  border: 2px solid #ff0000;
  border-radius: 5px;
  transition: 0.3s;
  background-color: rgba(0, 0, 0, 0.7);
}

nav.navigation ul li .nav-link:hover {
  background-color: #ff0000;
  color: #0d0d0d;
  box-shadow: 0px 4px 15px rgba(255, 0, 0, 0.7);
  transition: all 0.3s ease;
}

.button {
  background-color: #ff0000;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 20px;
  display: inline-block;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(255, 0, 0, 0.6);
}

.button:hover {
  background-color: #0d0d0d;
  color: #ff0000;
  box-shadow: 0px 6px 15px rgba(255, 0, 0, 0.8);
}

footer {
  background-color: rgba(26, 26, 26, 0.85);
  padding: 20px;
  text-align: center;
  border-top: 2px solid #ff0000;
  margin-top: auto;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
  color: #b3b3b3;
}