@charset "UTF-8";
/* Fonts */
@font-face {
  font-family: "optimusprinceps";
  src: url(../font/optimusprinceps/OptimusPrinceps.ttf);
}
@font-face {
  font-family: "enchantedland";
  src: url(../font/enchanted_land/enchantedland.otf);
}
@font-face {
  font-family: "pirataone";
  src: url(../font/pirata_one/PirataOne.ttf);
}
/* Body variable */
body {
  margin: 0;
  padding: 0;
  background-color: #111;
  background-image: url(../img/Irithyll.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  font-family: "Georgia", serif;
  text-align: center;
}

/* Mixin mobile */
header {
  display: grid;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, auto);
  row-gap: 20px;
  padding: 20px;
}
header .title {
  grid-column: 1/6;
  grid-row: 1;
  justify-self: center;
  position: relative;
  text-align: center;
  margin: 30px 0 0;
  font-size: 3.5em;
  font-weight: 800;
}
header .title a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
header h1:hover {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.7), 0 0 30px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.3), 0 0 50px rgba(255, 255, 255, 0.2);
}
header .dropdown-row {
  grid-column: 3;
  grid-row: 2;
  justify-self: center;
  position: relative;
  margin-top: 25px;
  margin-bottom: -30px;
  /* Submenú oculto */
  /* Mostrar submenú al pasar el mouse */
  /* Estilo de enlaces del submenú */
}
header .dropdown-row:hover .dropdown-menu {
  display: block;
}
header .dropdown-row .dropdown-button {
  width: 200px;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "optimusprinceps", serif;
  font-size: 1.5em;
}
header .dropdown-row .dropdown-menu {
  width: 200px;
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 2px;
  padding: 10px;
  z-index: 1000;
  font-family: "optimusprinceps", serif;
  font-size: 1.5em;
  text-align: center;
}
header .dropdown-row .dropdown-menu .dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
header .dropdown-row .dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header .dropdown-row .dropdown-menu li {
  margin: 5px 0;
}
header .dropdown-row .dropdown-menu a {
  color: white;
  text-decoration: none;
}
header .dropdown-row .dropdown-submenu {
  position: relative;
}
header .dropdown-row .sub-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%; /* aparece a la derecha */
  background-color: rgba(0, 0, 0, 0.85);
  border-radius: 4px;
  padding: 10px;
  min-width: 180px;
  z-index: 1100;
  text-align: left;
}
header .dropdown-row .dropdown-submenu:hover .sub-menu {
  display: block;
}
header .dropdown-row .sub-menu li {
  margin: 5px 0;
}
header .dropdown-row .sub-menu a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 5px 10px;
}
header .dropdown-row .sub-menu a:hover {
  background-color: rgba(0, 0, 0, 0.7); /* toque dorado Dark Souls */
}
header .h2-dark {
  grid-column: 2/5;
  grid-row: 3;
  position: relative;
  justify-self: center;
  margin-top: 50px;
  margin-bottom: -30px;
  font-size: 2em;
  font-family: "optimusprinceps", serif;
  font-weight: 800;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.2);
  transition: text-shadow 0.5s ease-in-out;
}
header .h3-header {
  grid-column: 1/6;
  grid-row: 3;
  position: relative;
  justify-self: center;
  margin-bottom: -30px;
  font-size: 2em;
  font-family: "optimusprinceps", serif;
  font-weight: 800;
}
header .back-button {
  background-color: rgba(0, 0, 0, 0.7);
  grid-column: 6;
  grid-row: 1;
  position: relative;
  font-family: "optimusprinceps", serif;
  font-size: 1.1em;
  font-weight: bold;
  display: inline-flex;
  border: none;
  width: 140px;
  height: 50px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-right: 0;
}
header .back-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}
header .back-button .boss-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
header a {
  text-decoration: none;
  text-align: center;
  color: #f2f2f2;
  margin-top: 1px;
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  header {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding: 20px 10px;
    box-sizing: border-box;
    border: none;
    outline: none;
    box-shadow: none;
    background-color: transparent;
    color: #fff;
  }
  header header.container > * {
    grid-column: 2/5;
    text-align: center;
  }
  header .title {
    font-size: 2em;
    margin: 0;
    grid-row: 1;
    align-self: center;
  }
  header .dropdown-row {
    display: grid;
    gap: 10px;
    align-items: center;
    width: 200%;
    max-width: 200px;
  }
  header .dropdown-button {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    cursor: pointer;
  }
  header .dropdown-menu {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 5px;
  }
  header .dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  header .dropdown-menu li {
    margin: 8px 0;
  }
  header .dropdown-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
  }
}
.h2-header {
  font-size: 1.2em;
  margin-top: 10px;
  margin-left: 20px;
}

.h3-header {
  font-size: 1.5em;
  margin-top: 30px;
}

header, footer {
  display: grid;
  max-width: 400px;
  margin: 50px auto;
  text-align: center;
  background-color: none;
  border: none;
  padding: 20px;
}

footer {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 10px;
  padding: 20px;
  text-align: center;
}
footer p {
  text-align: justify;
  font-family: "pirataone", serif;
  font-size: 1.25em;
  color: #c2bebe;
}
footer .p2 {
  font-size: 1.2em;
  color: #f2f2f2;
  text-align: center;
  grid-column: 1/5;
  font-family: "pirataone", serif;
}
footer .footer-socials {
  display: flex;
  justify-content: space-around;
  align-items: center;
  grid-column: 1/5;
}
footer a img {
  width: 30px;
  transition: transform 0.3s ease;
}
footer a:hover img {
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
  transition: all 0.3 ease;
  border-radius: 12px;
}
footer .footer-img {
  max-width: 30px;
  max-height: 30px;
  align-items: center;
}
@media screen and (min-width: 375px) and (max-width: 767px) {
  footer footer {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    padding: 10px;
    gap: 10px;
  }
  footer footer .footer-socials {
    flex-direction: row;
    gap: 10px;
  }
  footer footer .footer-socials .footer-socials a img {
    width: 25px;
  }
}

.about-container {
  max-width: 50%;
  margin: 60px auto 50px;
  padding: 20px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.about-container h2 {
  font-family: "optimusprinceps", serif;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.2);
  transition: text-shadow 0.5s ease-in-out;
}
.about-container p {
  text-align: justify;
  font-family: "pirataone", serif;
  font-size: 1.25em;
  color: #c2bebe;
}
.about-container .index-img {
  width: 680px;
  height: auto;
  margin-top: 30px;
  border: 4px solid #ada9a9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 375px) and (max-width: 767px) {
  .about-container {
    max-width: 95%;
    padding: 15px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-container h2 {
    font-size: 1.6em;
    margin-bottom: 20px;
  }
  .about-container p {
    font-size: 1em;
    text-align: justify;
  }
  .about-container .index-img {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    height: auto;
  }
}

h1 {
  font-family: "optimusprinceps", serif;
  text-align: center;
  margin-bottom: 30px;
  font-size: 3em;
  color: #fff;
  font-weight: 800;
  text-shadow: hover 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.2);
  transition: text-shadow 0.5s ease-in-out;
}

.about-container {
  max-width: 50%;
  margin: 50px auto;
  padding: 20px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  flex-wrap: wrap;
}
.about-container .about-image {
  border: 3px solid #777;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  max-width: 300px;
  height: auto;
}
.about-container .about-text {
  max-width: 600px;
  text-align: justify;
  margin-left: 30px;
}
.about-container p {
  text-align: justify;
  font-family: "pirataone", serif;
  font-size: 1.25em;
  color: #c2bebe;
}
.about-container h2 {
  font-family: "optimusprinceps", serif;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.2);
  transition: text-shadow 0.5s ease-in-out;
}
.about-container h3 {
  font-family: "optimusprinceps", serif;
  text-align: center;
  font-size: 25px;
}
.about-container .lore-img {
  width: 600px;
  height: auto;
  border: 3px solid;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}
.about-container h4 {
  font-family: "optimusprinceps", serif;
  font-size: 1.2em;
  text-align: center;
}
.about-container .lore-img-2 {
  width: 400px;
  height: auto;
  align-items: center;
  border: 2px solid;
  border-radius: 5px;
  margin-left: 100px;
}
@media screen and (min-width: 375px) and (max-width: 767px) {
  .about-container h1 {
    font-size: 0.8em;
  }
}
@media screen and (min-width: 375px) and (max-width: 767px) {
  .about-container {
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    flex-direction: column;
    text-align: center;
  }
  .about-container .about-image {
    max-width: 60%;
    margin: 0 auto;
  }
  .about-container .about-text {
    margin-left: 0;
    margin-top: 15px;
    text-align: justify;
  }
  .about-container p {
    font-size: 1em;
  }
  .about-container h2 {
    font-size: 1.5em;
  }
  .about-container h3 {
    font-size: 1.2em;
  }
  .about-container .lore-img, .about-container .lore-img-2 {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
  }
  .about-container .lore-img-2 {
    margin-left: 0;
  }
}

body {
  background-image: url(../img/Irithyll_del_Valle_Boreal.jpg);
}

.about-container {
  max-width: 50%;
  margin: 60px auto 50px;
  padding: 20px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.about-container .galeria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  font-family: "optimusprinceps", serif;
}
.about-container .galery-img {
  width: 100%;
  height: 90%;
  border: solid #c2bebe;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
}
.about-container .galery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .about-container {
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.7);
  }
  .about-container .galeria {
    grid-template-columns: 1fr;
    padding: 10px;
    gap: 15px;
  }
  .about-container .galery-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
  }
  .about-container figcaption {
    font-family: "optimusprinceps", serif;
    font-size: 1.125em;
  }
}
.title-about-me {
  margin-top: 25px;
  margin-bottom: -20px;
}

.about-container {
  max-width: 50%;
  margin: 60px auto;
  padding: 20px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  flex-wrap: wrap;
}
.about-container .about-image {
  border: 3px solid #777;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  max-width: 300px;
  height: auto;
}
.about-container .about-text {
  max-width: 600px;
  text-align: justify;
  margin-left: 30px;
}
.about-container .about-text p {
  text-align: justify;
  font-family: "pirataone", serif;
  font-size: 1.25em;
  color: #c2bebe;
}
@media screen and (min-width: 375px) and (max-width: 767px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 100%;
    margin: 20px auto;
    padding: 15px;
  }
  .about-container .about-image {
    max-width: 80%;
    margin: 0 auto;
  }
  .about-container .about-text {
    margin-left: 0;
    margin-top: 15px;
  }
  .about-container .about-text p {
    font-size: 1em;
  }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .title-about-me {
    grid-row: 3;
    text-align: center;
    margin-bottom: 0;
    font-size: 1em;
  }
}
body {
  background-image: url(../img/Irithyll_del_Valle_Boreal.jpg);
}

.body-centered {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111;
}

h1 {
  font-family: "optimusprinceps", serif;
  text-align: center;
  margin-bottom: 30px;
  font-size: 50px;
  color: #fff;
}

.form-container {
  width: 100%;
  max-width: 800px;
  font-family: "optimusprinceps", serif;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  margin-left: 10%;
}
.form-container .form-group {
  margin-bottom: 20px;
}
.form-container .form-group label {
  font-size: 16px;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}
.form-container .form-group input, .form-container .form-group select, .form-container .form-group textarea {
  width: 100%;
  max-width: 700px;
  padding: 12px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 2px solid #424141;
  border-radius: 5px;
  box-sizing: border-box;
}
.form-container .form-group textarea {
  resize: vertical;
  height: 150px;
}
.form-container .form-group input:focus, .form-container .form-group select:focus, .form-container .form-group textarea:focus {
  border-color: #f0f0f0;
  outline: none;
}
.form-container .form-group button {
  font-family: "optimusprinceps", serif;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  padding: 10px 20px;
  border: #424141 solid;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
}
.form-container .form-group button:hover {
  background-color: rgb(0, 0, 0);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  border-radius: 12px;
}
@media screen and (min-width: 375px) and (max-width: 767px) {
  .form-container h1 {
    font-size: 1.8em;
  }
  .form-container .form-container {
    width: 90%;
    max-width: 100%;
    margin: 20px auto;
  }
  .form-container .form-container input, .form-container .form-container select, .form-container .form-container textarea, .form-container .form-container button {
    max-width: 100%;
    font-size: 1em;
  }
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  color: white;
  font-family: "optimusprinceps", serif;
}
#loader img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}
#loader p {
  font-size: 1.2em;
  margin-bottom: 15px;
}
#loader .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #666;
  border-top: 4px solid orange;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  display: block;
  margin: auto;
  margin-top: 60px;
  max-width: 80%;
  max-height: 80vh;
  border: 5px solid #f2f2f2;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(250, 250, 250, 0.75);
  background-color: #111;
}

#caption {
  text-align: center;
  color: #ccc;
  margin-top: 15px;
  font-size: 18px;
  font-style: italic;
  font-family: "optimusprinceps", serif;
}

.close, .prev, .next {
  cursor: pointer;
  color: white;
  font-size: 2em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
  padding: 16px;
}

.close {
  top: 15px;
  right: 35px;
  font-size: 3em;
  transform: none;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .modal-content {
    max-width: 95%;
    max-height: 70vh;
    border: 3px solid #f2f2f2;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(250, 250, 250, 0.6);
  }
  #caption {
    font-size: 16px;
    margin-top: 10px;
    padding: 0 10px;
  }
  .close {
    right: 20px;
    top: 10px;
    font-size: 2.5em;
    padding: 12px;
  }
  .prev, .next {
    font-size: 1.8em;
    padding: 12px;
  }
  .prev {
    left: 5px;
  }
  .next {
    right: 5px;
  }
}
/* Toast */
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  position: fixed;
  top: 30px;
  right: 30px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #f8f8f8;
  width: 240px;
  padding: 16px 24px;
  border-radius: 10px;
  font-family: "optimusprinceps", serif;
  font-size: 1em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
  z-index: 1000;
  box-shadow: 0 0 10px #000;
}
.toast .toast-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 5px;
}
.toast.show {
  opacity: 1;
  pointer-events: auto;
  animation: fadeIn 1s forwards;
}
.toast.fade-out {
  animation: fadeOut 1s forwards;
  pointer-events: none;
}
.toast.hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}
@media screen and (min-width: 375px) and (max-width: 767px) {
  .toast {
    top: 10px;
    right: 10px;
    font-size: 0.9em;
    padding: 12px 16px;
  }
  .toast-img {
    width: 30px;
    height: 30px;
  }
}
/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  color: white;
  font-family: "optimusprinceps", serif;
}

#loader img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

#loader p {
  font-size: 1.2em;
  margin-bottom: 15px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #666;
  border-top: 4px solid orange;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 375px) and (max-width: 767px) {
  #loader img {
    width: 100px;
    margin-bottom: 15px;
  }
  #loader p {
    font-size: 1em;
    margin-bottom: 10px;
    text-align: center;
    padding: 0 10px;
  }
  .spinner {
    width: 30px;
    height: 30px;
    border: 3px solid #666;
    border-top: 3px solid orange;
  }
}
#demo.carousel {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 40px;
  overflow: hidden;
}
#demo.carousel .carousel-indicators li {
  background-color: rgba(255, 255, 255, 0.5);
}
#demo.carousel .carousel-indicators .active {
  background-color: rgba(255, 255, 255, 0.9);
}
#demo.carousel .carousel-inner {
  border-radius: 8px;
}
#demo.carousel .carousel-item img,
#demo.carousel .carousel-item video {
  max-width: 100%;
  max-height: auto;
  border-radius: 8px;
  border: 2px solid #6e6b6b;
}
#demo.carousel .carousel-control-prev,
#demo.carousel .carousel-control-next {
  width: auto;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  filter: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#demo.carousel .carousel-control-prev:hover,
#demo.carousel .carousel-control-next:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}
#demo.carousel .carousel-control-prev:hover .carousel-control-prev,
#demo.carousel .carousel-control-next:hover .carousel-control-next {
  opacity: 1;
  pointer-events: auto;
  filter: blur(0);
  transform: translateY(-50%) scale(1);
}
#demo.carousel .carousel-control-prev-icon,
#demo.carousel .carousel-control-next-icon {
  background-size: 60% 60%;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 375px) and (max-width: 767px) {
  #demo.carousel #demo.carousel {
    max-width: 100%;
    margin: 0 auto;
  }
  #demo.carousel #demo.carousel .carousel-item img,
  #demo.carousel #demo.carousel .carousel-item video {
    max-width: 100%;
    height: auto;
  }
}

.boton-volver {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10%;
  text-decoration: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background-color 0.3s ease;
}
.boton-volver:hover {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.3);
}
.boton-volver .icono {
  width: 20px;
  height: 20px;
}
.boton-volver .icono:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 375px) and (max-width: 767px) {
  .boton-volver .boton-volver {
    bottom: 10px;
    right: 10px;
    font-size: 16px;
    padding: 10px 12px;
  }
}

body {
  background-image: url(../img/Irithyll_del_Valle_Boreal.jpg);
}

.form-container {
  width: 100%;
  max-width: 800px;
  font-family: "optimusprinceps", serif;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  margin: 50px auto;
}
.form-container .form-group {
  margin-bottom: 20px;
}
.form-container label {
  font-size: 16px;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}
.form-container input, .form-container select, .form-container textarea {
  width: 100%;
  max-width: 700px;
  padding: 12px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 2px solid #424141;
  border-radius: 5px;
  box-sizing: border-box;
}
.form-container textarea {
  resize: vertical;
  height: 150px;
}
.form-container input:focus, .form-container select:focus, .form-container textarea:focus {
  border-color: #f0f0f0;
  outline: none;
}
.form-container button {
  font-family: "optimusprinceps", serif;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  padding: 10px 20px;
  border: #424141 solid;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
}
.form-container button:hover {
  background-color: rgb(0, 0, 0);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  border-radius: 12px;
}
@media screen and (min-width: 375px) and (max-width: 767px) {
  .form-container h1 {
    font-size: 1em;
    text-shadow: none;
  }
}
@media screen and (min-width: 375px) and (max-width: 767px) {
  .form-container .form-container {
    width: 90%;
    max-width: 100%;
    margin: 20px auto;
  }
  .form-container .form-container input, .form-container .form-container select, .form-container .form-container textarea, .form-container .form-container button {
    max-width: 100%;
    font-size: 1em;
  }
}

img:hover,
select:hover,
a:hover,
button:hover {
  cursor: url(../img/sword-icon.png), auto;
}

@media (max-width: 767px) {
  .close, .prev, .next {
    font-size: 1.5em;
  }
}
.title-about-me {
  grid-column: 1/6;
  grid-row: 3;
  text-align: center;
  margin: auto;
  font-size: 3em;
  font-weight: 800;
}

.title-about-me:hover {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.7), 0 0 30px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.3), 0 0 50px rgba(255, 255, 255, 0.2);
}

body {
  background-image: url(../img/Irithyll-of-the-boreal-valley.webp);
}

.personajes-section {
  max-width: 50%;
  margin: 60px auto 50px;
  padding: 20px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.personajes-section .personajes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}
.personajes-section .personajes-grid a {
  color: #f0f0f0;
  font-family: "optimusprinceps", serif;
  font-weight: 600;
  text-decoration: none;
  padding: 10px;
  background-color: rgba(54, 54, 54, 0.5);
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.personajes-section .personajes-grid a:hover {
  background-color: rgba(92, 87, 87, 0.1);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.character-container {
  position: relative;
  max-width: 90%;
  margin: 60px auto 50px;
  padding: 20px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.character-container .special-p {
  margin-bottom: 15px;
}
.character-container .firekeeper-p-2 {
  margin-left: 20px;
  text-decoration: underline;
  font-style: italic;
  text-align: justify;
  font-weight: 700;
  margin-top: 20px;
}
.character-container p {
  font-family: "optimusprinceps", serif;
  font-size: 1.22em;
  margin-right: auto;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: auto;
  max-width: 60%;
  text-align: justify;
}
.character-container a {
  text-decoration: none;
  color: rgba(255, 217, 0, 0.6509803922);
}
.character-container a:hover {
  text-decoration: underline;
}
.character-container .quote-p {
  text-align: justify;
  max-width: 40%;
  margin-right: 40%;
  margin-left: 10%;
  margin-top: 30px;
}
.character-container .h-boss {
  font-family: "optimusprinceps", serif;
  font-size: 2em;
  font-weight: 700;
  width: 100%;
  max-width: 60%;
  margin-left: 0;
  margin-bottom: 30px;
  margin-top: 30px;
  text-align: start;
}
.character-container .h-anri {
  font-family: "optimusprinceps", serif;
  font-size: 2em;
  font-weight: 700;
  width: 100%;
  max-width: 80%;
  margin-left: 0;
  margin-bottom: 30px;
  margin-top: 30px;
  text-align: start;
}
.character-container .dialogue-container {
  font-size: 0.8em;
  max-width: 55%;
  max-height: 4000px;
  margin: 20px 0 20px 0;
  margin-right: 400px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 12px;
  overflow-y: auto;
  column-count: 2;
  column-gap: 0px;
}
.character-container .dialogue-container .dialogue-container p::first-letter {
  font-size: 1em;
  color: #ffcc00;
  font-weight: bold;
}
.character-container .dialogue-container .dialogue-container p::first-letter .dialogue-container p {
  text-align: justify;
  text-align-last: center;
  margin-bottom: 1em;
}
.character-container .boss-container {
  display: flex;
  justify-content: flex-start;
  padding: 20px;
}
.character-container .boss-list {
  list-style: none;
  padding-left: 0;
  margin-right: 900px;
  font-family: "optimusprinceps", serif, serif;
  font-size: 1em;
  color: #f0f0f0;
  max-width: 700px;
  text-align: justify;
}
.character-container .boss-list li {
  background: url(../img/bonfire-img.png) no-repeat left center;
  background-size: 15px 15px;
  padding-left: 30px;
  margin-bottom: 10px;
  font-family: "optimusprinceps", serif, serif;
  font-size: 1.2em;
  color: #f0f0f0;
  line-height: 1.4;
}
.character-container .boss-list .sub-li {
  font-family: "optimusprinceps", serif;
  font-size: 1.1em;
  list-style-type: disc;
  background: none;
}
.character-container .boss-list .sub-li-2 {
  font-family: "optimusprinceps", serif;
  font-size: 1em;
  list-style-type: disc;
  background: none;
}
.character-container .anri-list {
  padding-left: 0;
  margin-right: 1000px;
  font-family: "optimusprinceps", serif;
  font-size: 1em;
  color: #f2f2f2;
  max-width: 700px;
  text-align: justify;
}
.character-container .anri-list li {
  background: url(../img/bonfire-img.png) no-repeat left center;
  background-size: 15px 15px;
  padding-left: 30px;
  margin-bottom: 10px;
  font-family: "optimusprinceps", serif, serif;
  font-size: 1.2em;
  color: #f2f2f2;
  line-height: 1.4;
}
.character-container .souls-table-deacons td {
  text-align: left;
  font-size: 1em;
}
.character-container .souls-table {
  font-family: "optimusprinceps", serif;
  font-size: 1.1em;
  border-collapse: collapse;
  width: 1000px;
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid #f2f2f2;
  margin: 0 auto 30px 0;
  margin-top: 10px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
  border-radius: 2px;
}
.character-container .souls-table th,
.character-container .souls-table td {
  border: 1px solid #857f7f;
  border-radius: 2px;
  padding: 10px 15px;
  text-align: center;
}
.character-container .souls-table th {
  background-color: rgba(0, 0, 0, 0.1);
  color: #f0f0f0;
  font-weight: bold;
  border: 1px solid #4b4848;
}
.character-container .souls-table td:first-child {
  font-weight: bold;
}
.character-container .souls-table td {
  background-color: rgba(54, 52, 52, 0.6);
}
.character-container .souls-table td:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}
.character-container .boss-card {
  position: absolute;
  top: 20px;
  right: 20px;
  max-width: 400px;
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid #555;
  border-radius: 10px;
  font-family: "optimusprinceps", serif;
  color: #ddd;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  padding: 20px;
}
.character-container .boss-card h2 {
  text-align: center;
  font-size: 1.5em;
  color: #ecebe6; /* estilo dorado */
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.character-container .boss-image img {
  width: 100%;
  max-width: 80%;
  border-radius: 4px;
  border: solid, #ccc;
  margin-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.character-container .boss-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}
.character-container .section-title {
  font-size: 18px;
  font-weight: bold;
  color: #ccc;
  margin: 20px 0 10px;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
}
.character-container .info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  font-size: 15px;
  padding-left: 10px;
}
.character-container .boss-card ul {
  padding: 0;
  margin: 0;
  text-align: center;
}
.character-container li {
  list-style: none;
}
.character-container .defense-grid {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.character-container .defense-grid div {
  width: 30%;
}
.character-container .defense-grid ul {
  padding-left: 18px;
  margin-top: 5px;
}
.character-container .defense-phase-title {
  margin-top: 15px;
  margin-bottom: 8px;
  font-size: 1.1em;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 1px 1px 2px black;
}
.character-container .boss-card-container {
  position: absolute;
  top: 20px;
  right: 20px;
  perspective: 1200px;
  width: 400px;
  height: auto;
  margin: 0;
  z-index: 10;
}
.character-container .boss-card-inner {
  position: relative;
  right: 20px;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
  cursor: pointer;
}
.character-container .boss-card-inner.is-flipped {
  transform: rotateY(180deg);
}
.character-container .boss-card {
  position: absolute;
  width: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid #555;
  padding: 20px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}
.character-container .card-front {
  transform: rotateY(0deg);
}
.character-container .card-back {
  transform: rotateY(180deg);
}
.character-container .main-boss-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-left: 100px;
}
.character-container .video-container {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}
.character-container video, .character-container iframe {
  border: 2px solid rgb(43, 42, 41);
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

@media screen and (min-width: 375px) and (max-width: 767px) {
  .character-container {
    flex-direction: column;
    align-items: flex-start;
    max-width: 95%;
    margin: 20px auto;
    padding: 10px;
  }
  .dialogue-container {
    max-width: 100%;
    margin-right: 0;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    column-count: 1;
    font-size: 0.9em;
  }
  .boss-card {
    position: relative;
    top: unset;
    right: unset;
    margin-top: 20px;
    max-width: 90%;
    padding: 15px;
  }
  .boss-list,
  .anri-list {
    margin-right: 0;
    max-width: 90%;
  }
  .main-boss-container {
    margin-left: 0;
  }
  p {
    max-width: 100%;
    font-size: 0.9em;
  }
  .h-boss,
  .h-anri {
    font-size: 1.3em;
    max-width: 100%;
    margin: 20px 0;
    text-align: start;
  }
  .quote-p {
    max-width: 100%;
    margin: 20px auto;
    text-align: center;
  }
  .souls-table {
    font-size: 0.9em;
    width: 100%;
  }
  .souls-table td,
  .souls-table th {
    padding: 8px;
  }
  .defense-grid {
    flex-direction: column;
    gap: 10px;
  }
  .defense-grid div {
    width: 100%;
  }
  .boss-card h2 {
    font-size: 1.2em;
  }
  .video-container {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  video,
  iframe {
    max-width: 100%;
    height: auto;
  }
}

/*# sourceMappingURL=styles.css.map */
