body {
  background-color: #1c1c2e; /* dark blue-grey */
  color: #d4ecd4; /* light pastel green */
  font-family: 'Gotham', fantasy;
      padding: 0px;
    margin: 0px;
}

/* HEADER STYLES */

header {
   padding: 0px;
    margin: 0px;
}

header #top_menu {
    background-image: url('../img/top-menu.png');
    background-color: black;
    background-repeat: repeat-x;
    background-size: contain;
    height: 60px;
    padding: 0px;
    margin: 0px;
    text-align: center;
}

header #top_menu * {
    background-image: url('../img/metal-button.png');
     background-repeat: no-repeat;
    background-size: contain;
    width: 100px;
    height: 50px;
}

header #title {
    margin: 00px;
    text-align: right;
    width: 100%;    
     background: url('../img/header.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 300px;
    height: 100vh;
}

header #title h1 {
    margin-top: 0px;
    color: deeppink;
    text-align: right;
    position: fixed;
    top: 3px;
    right: 6px;
    z-index: 10;
}

header #title p {
    position: absolute;
    bottom: 30px; 
    left: 40px;
    color: greenyellow;
    width: 390px;
    text-align: justify;
}

header a {
    color: inherit;
    text-decoration: none;
}

header img.title {    
    width: 200px;
    height: 200px;
}

/* INDEX MENU */
.left-panel {
    position: fixed;
    left: 5px;
    bottom: 80px; /* Just below the header */
    width: 200px;
    height: 500px;
    background: rgba(0, 0, 0, 0.8);
    background-image: url('../img/black-roll-v.png');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    border-style: solid;
    border-width: 2px;
    border-color: darkmagenta;
    padding: 10px;
}

.chapters ul {
    list-style-type: none;
    padding: 0;
}

.chapters ul li {
    margin: 10px 0;
}

.chapters ul li a {
    text-decoration: none;
    color: darkmagenta;
    font-weight: bolder;
}

/* BUTTON TOGGLE STYLES */
.menu-button {
    position: fixed;
    text-align: left;
    top: 17px;
    left: 25px;
    z-index: 200;
}

button#menu-toggle {
    position: sticky;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    background-image: url('../img/menu-button-transparent.png');
    width: 80px; /* Adjust width to match the image size */
    height: 80px; /* Adjust height to match the image size */
  background-size: contain; /* Ensure the image fits the button */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  background-position: center; /* Center the image within the button */
  border: none; /* Remove default button border */
  outline: none; /* Remove default button outline */
  cursor: pointer; /* Change cursor to pointer to indicate it's clickable */
  background-color: transparent; /* Make sure the background is transparent */
   
/* Hid the inner text. I maintain for accessibility */
 text-indent: -9999px; /* Moves the text far off-screen */
  white-space: nowrap; /* Prevents the text from wrapping */
  overflow: hidden; /* Ensures no text is visible */
}

button#menu-toggle:hover {
    background-image: url('../img/menu-button-transparent-red.png');
}

/*MAIN CONTENT STYLES */

.main-content {
  background: url('../img/background-main.png') no-repeat center center fixed;
  background-size: cover;
  padding: 2% 0;
  position: relative;
  z-index: 50;
}

.content-overlay {
  background-color: rgba(28, 28, 46, 0.8); /* semi-transparent layer */
  padding: 5%;
  margin: 3% auto;
  width: 60%;
}

h2 {
  color: #9b30ff; /* purple article titles */
}

.separador {
    text-align: center;
}

/* CONTEXTUAL MENU */
.right-panel {
    position: fixed;
    float: right;
    text-align: center;
    right: 25px;
    bottom: 40px;
    width: 500px;
    height: auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 4px;
     z-index: 100;
}

.visible {
    display: block;
}

.hidden {
    display: none;
}

/* FOOTER */
footer {
    background-color: dimgray;
    width: auto;
    z-index: 1000;
}

/* Legend footer */
footer .leyenda {
    position: relative;
    background-image: url('../img/ontheship.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 80px;
    padding-top: 450px;
    border-color: greenyellow;
    border-style: dotted;
    border-width: medium;
    z-index: inherit;
}

footer .leyenda p {
    margin-left: 60px;
    margin-bottom: 90px;
    color: aquamarine;
}

/* Tigre ninja footer */
footer address {
    height: 200px;
    padding-left: 20%;
     padding-top: 30px;
    background-position-x: left 20px;
    background-position-y: center;
    background-repeat: no-repeat;
    background-image: url('../img/tigre.jpg');
    background-size: 200px;
    border-style: double;
    border-width: 7px;
    border-spacing: 3px;
    border-color: red;
}

footer address p {
    background-color: firebrick;
    padding: 24px 100px;
}