/* styles.css */

/*
  Colors:
  - Black (#000) or near-black background
  - #e0ac42 gold for highlights
  - #231d0e brown for button backgrounds, etc.
  - White (#fff) for text
*/
/* Import Custom Fonts */
@font-face {
  font-family: 'MorrisSansCondensedMedium';
  src: url('../assets/fonts/MorrisSansCondensedMedium.ttf') format('truetype');
}
@font-face {
  font-family: 'MorrisSansCondensedLight';
  src: url('../assets/fonts/MorrisSansCondensedLight.ttf') format('truetype');
}
@font-face {
  font-family: 'AurebeshNeue';
  src: url('../assets/fonts/AurebeshNeue.ttf') format('truetype');
}
/* Basic reset / container styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #231d0e;
  color: #fff;
  font-family: "MorrisSansCondensedMedium", Arial, sans-serif;
  max-width: 500px; /* Keep things centered on desktops */
  margin: 0 auto;
}

#app {
  min-height: 100vh;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #e0ac42;
  background-color: #000;
}

/* Logo styling */
#logo {
  width: 220px;
  margin: 10px auto;
  display: block;
}

/* Headings */
h1, h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
}

/* Welcome Screen */
#welcome-screen {
  text-align: center;
  width: 100%;
}

#welcome-menu {
  list-style: none;
  margin-top: 20px;
}

#welcome-menu li {
  margin: 10px 0;
}

/* Menu buttons (shared) */
.menu-button {
  width: 350px;
  padding-top: 23px;
  padding-bottom: 23px;
  height: 66px;
  background-color: #e0ac42;
  color: #fff;
  border: none;
  font-size: 15px;
  font-family: 'MorrisSansCondensedMedium', Arial, sans-serif;
  cursor: pointer;
  background-image: url('../assets/images/buttonBackgroundUp.png');
  background-size: cover;
}

.menu-button:hover {
  color: #e0ac42;
}

/* Back buttons */
.back-button {
  width: 350px;
  height: 66px;
  background-image: url('../assets/images/buttonBackgroundDown.png');
  background-size: cover;
  border: none;
  color: #fff;
  font-size: 16px;
  font-family: 'MorrisSansCondensedMedium', Arial, sans-serif;
  cursor: pointer;
  text-align: center;
  background-color: #000000 !important;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 35px;
}
#password-input {
  font-size: 18px;
  height: 50px;
  border: 1px solid #e0ac42;
  margin-bottom: 20px;
  color: #e0ac42;
  padding: 0 10px;
  width: 100%;
  background-color: #000000;
  font-family: 'MorrisSansCondensedMedium', Arial, sans-serif;
  border-radius: 5px;
  box-sizing: border-box;
}
.back-button:hover {

  color: #e0ac42;
}

/* Hidden screens */
#password-screen,
#experience-screen,
#team-screen,
#cast-screen,
#about-screen {
  text-align: center;
  width: 100%;
  max-width: 100% !important;
}
#experience-content img {
  width: 100%;
  height: auto;
  max-width: 100% !important;
  padding-top: 10px;
  padding-bottom: 20px;
}
#experience-content h3 {
  padding-top: 20px;
  padding-bottom: 8px;
}
#team-content .item-links a, #cast-content .item-links a{
  clear: both;
  padding: 15px;
  border: 1px solid #e0ac42;
  border-radius: 5px;
  display: block;
  margin-top: 5px;
  margin-bottom: 12px;
  background-color: #231d0e;

}
/* Reusable container for textual content */
#experience-content,
#team-content,
#cast-content,
#about-content {
  margin: 15px auto;
  width: 90%;
  text-align: left;
  max-width: 90% !important;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .menu-button {
    font-size: 16px;
  }
  .back-button {
    font-size: 14px;
  }
}

/* Links in the "team"/"cast" bios */
.item-links a {
  color: #e0ac42;
  text-decoration: none;
}
.item-links a:hover {
  text-decoration: underline;
}

/* For the team/cast items */
.item-container {
  border: 1px solid #e0ac42;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 6px;
}

.item-title {
  font-size: 18px;
  color: #e0ac42;
  margin-bottom: 6px;
}

.item-description {
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
}
/* Example for global footer styling */
.global-footer {
  position: absolute;
  text-align: center;
  bottom: 2px;
}

.global-footer small {
  font-size: 12px;
  color: #fff; /* White text */
}

.global-footer a {
  color: #e0ac42; /* Gold highlight for link */
  text-decoration: none;
}

.global-footer a:hover {
  text-decoration: underline;
}
