/* ==================================================
   NOX'S WORLD
   CSS PRINCIPAL
   ================================================== */


/* ==================================================
   FUENTES
   ================================================== */

@font-face {
  font-family: "Daydream";
  src: url("../Fonts/Daydream.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "VCRosdNEUE";
  src: url("../Fonts/VCRosdNEUE.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


/* ===== FUENTE GENERAL ===== */

body {
  font-family: "VCRosdNEUE", monospace;
}


/* ===== ELEMENTOS DE TEXTO ===== */

p,
li,
a,
span,
strong,
button,
input,
textarea {
  font-family: "VCRosdNEUE", monospace;
}


/* ===== TÍTULOS ===== */

h1,
h2,
h3 {
  font-family: "Daydream", cursive;
}


html {
  min-height: 100%;
  background-color: #070012;
  background-image: url("../images/bg1.jpg");
  background-repeat: repeat;
  background-size: 250px 250px;
}


/* ==================================================
   FONDO
   ================================================== */
body {

  background-color: #070012;

  color: lavender;

  background-image: url("../images/bg1.jpg");
  background-repeat: repeat;
  background-size: 250px 250px;

  margin: 0;

  font-family: "VCRosdNEUE", monospace;

  font-size: 18px;

  line-height: 1.45;

}


/* ==================================================
   CAJA PRINCIPAL
   ================================================== */

.site-container {

  width: 80%;

  margin: 30px auto;

  border: 3px solid #6300DB;

  background-color: rgba(7, 0, 18, 0.92);

  box-shadow:
    0 0 12px rgba(99, 0, 219, 0.45),
    0 0 30px rgba(99, 0, 219, 0.15);

}


/* ==================================================
   BANNER
   ================================================== */

.banner {

  box-sizing: border-box;

  height: 200px;

  background-color: #1A0038;

  background-image: url("../images/banner2.jpeg");

  background-repeat: no-repeat;

  background-position: center center;

  background-size: cover;

  border-bottom: 3px solid #6300DB;

  display: flex;

  align-items: center;

  justify-content: flex-end;

}


.banner-text {

  font-size: 35px;

  color: lavender;

  text-align: right;

  padding-right: 40px;

}

/* ===== TÍTULO CLICKEABLE ===== */

.banner-text a,
.banner-text a:link,
.banner-text a:visited,
.banner-text a:hover,
.banner-text a:active {

  font-family: "Daydream", serif;

  font-size: 60px;

  color: lavender;

  text-decoration: none;

  text-shadow:
    0 0 5px #6300DB,
    0 0 12px rgba(216, 180, 255, 0.5);

}


/* ==================================================
   ESTRUCTURA DE TRES COLUMNAS
   ================================================== */

.layout {

  display: grid;

  grid-template-columns: 200px 1fr 200px;

  gap: 18px;

  padding: 18px;

}


/* ==================================================
   BARRA LATERAL IZQUIERDA
   ================================================== */

.sidebar {

  border: 2px solid #6300DB;

  background-color: rgba(7, 0, 18, 0.82);

  padding: 12px;

  height: fit-content;

  box-shadow:
    3px 3px 0 rgba(99, 0, 219, 0.25);

}


/* ===== TÍTULOS ===== */

.sidebar h3 {

  text-align: center;

  color: #D8B4FF;

  border-bottom: 1px dashed #6300DB;

  padding-bottom: 7px;

  margin-top: 8px;

}


/* ===== ENLACES ===== */

.sidebar a {

  display: block;

  padding: 9px;

  margin: 6px 0;

  border: 1px solid #6300DB;

  border-radius: 3px;

  color: lavender;

  text-decoration: none;

  background-color: rgba(18, 0, 47, 0.65);

  transition:
    background-color 0.2s,
    transform 0.2s;

}


/* ===== HOVER ===== */

.sidebar a:hover {

  background-color: #26005A;

  color: white;

  transform: translateX(4px);

}


/* ==================================================
   CONTENIDO PRINCIPAL
   ================================================== */

.main-content {

  min-width: 0;

}


/* ==================================================
   CAJAS PRINCIPALES
   ================================================== */

.box {

  border: 2px solid #6300DB;

  background-color: rgba(18, 0, 47, 0.78);

  padding: 22px;

  margin-bottom: 18px;

  box-shadow:
    4px 4px 0 rgba(99, 0, 219, 0.18);

}


/* ===== TÍTULOS DE LAS CAJAS ===== */

.box h2 {

  margin-top: 0;

  color: lavender;

  border-bottom: 1px dashed #6300DB;

  padding-bottom: 9px;

  text-shadow:
    0 0 5px rgba(216, 180, 255, 0.35);

}


/* ==================================================
   ZONA DE GIFS
   ================================================== */

.gif-area {

  min-height: 120px;

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 25px;

  flex-wrap: wrap;

  border: 1px dashed #6300DB;

  background-color: rgba(7, 0, 18, 0.45);

  padding: 20px;

}


/* ===== GIFS ===== */

.gif-area img {

  max-width: 150px;

  height: auto;

  transition:
    transform 0.2s;

}


/* Pequeño movimiento al pasar el mouse */

.gif-area img:hover {

  transform: rotate(-3deg) scale(1.05);

}


/* ==================================================
   BARRA LATERAL DERECHA
   ================================================== */

.right-sidebar {

  border: 2px solid #6300DB;

  background-color: rgba(7, 0, 18, 0.82);

  padding: 12px;

  height: fit-content;

  box-shadow:
    -3px 3px 0 rgba(99, 0, 219, 0.25);

}


/* ===== TÍTULOS ===== */

.right-sidebar h3 {

  text-align: center;

  color: #D8B4FF;

  border-bottom: 1px dashed #6300DB;

  padding-bottom: 7px;

}


/* ==================================================
   CAJAS LATERALES
   ================================================== */

.side-box {

  border: 1px solid #6300DB;

  padding: 8px;

  margin-bottom: 15px;

  text-align: center;

  background-color: rgba(18, 0, 47, 0.65);

}


/* ===== IMÁGENES ===== */

.side-box img {

  max-width: 100%;

  height: auto;

  display: block;

  margin: auto;

}


/* ==================================================
   PÁGINA SOBRE MÍ
   ================================================== */

.about-content {

  width: 95%;

  margin: 25px auto;

}


.about-box {

  border: 2px solid #6300DB;

  background-color: rgba(18, 0, 47, 0.78);

  padding: 22px;

  margin-bottom: 20px;

  box-shadow:
    4px 4px 0 rgba(99, 0, 219, 0.18);

}


.about-box h2 {

  margin-top: 0;

  color: lavender;

  border-bottom: 1px dashed #6300DB;

  padding-bottom: 8px;

}


/* ===== PRESENTACIÓN ===== */

.about-intro {

  display: flex;

  gap: 25px;

  align-items: flex-start;

}


.about-avatar {

  width: 220px;

  max-width: 35%;

  height: auto;

}


.about-text {

  flex: 1;

}


/* ==================================================
   FAVORITOS
   ================================================== */

.favorites {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px;

}


.favorite {

  border: 1px solid #6300DB;

  padding: 15px;

  background-color: rgba(14, 0, 38, 0.75);

}


.favorite h3 {

  margin-top: 0;

  color: #D8B4FF;

}


/* ==================================================
   DATOS RANDOM
   ================================================== */

.random-data {

  display: flex;

  flex-wrap: wrap;

  gap: 15px;

  align-items: center;

}


.random-data p {

  border: 1px solid #6300DB;

  background-color: rgba(14, 0, 38, 0.75);

  padding: 10px;

  margin: 0;

}


/* ==================================================
   MIS COSAS
   ================================================== */

.things {

  display: flex;

  flex-wrap: wrap;

  gap: 15px;

}


.thing {

  border: 1px solid #6300DB;

  background-color: rgba(14, 0, 38, 0.75);

  padding: 10px;

  flex: 1;

  min-width: 150px;

}

/*GIFS DECORATIVOS*/

.decorative-gifs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 15px 0;
}

.decorative-gifs img {
  width: 50px;
  height: auto;
}

/* ==================================================
   DECORACIONES DE SOBRE MÍ
   ================================================== */

.about-decorations {

  display: flex;

  justify-content: space-around;

  align-items: center;

  flex-wrap: wrap;

  gap: 15px;

  margin-top: 20px;

}


.about-decorations img {

  max-width: 180px;

  height: auto;

}


/* ==================================================
   IMÁGENES RANDOM DE SOBRE MÍ
   ================================================== */

.about-random-images {

  display: flex;

  justify-content: space-around;

  align-items: center;

  flex-wrap: wrap;

  gap: 20px;

  margin-top: 20px;

}


.about-random-images img {

  max-width: 200px;

  height: auto;

}


/* ==================================================
   PIE DE PÁGINA
   ================================================== */

footer {

  text-align: center;

  border-top: 3px solid #6300DB;

  padding: 18px;

  color: lavender;

  background-color: rgba(18, 0, 47, 0.5);

}


/* ==================================================
   TARJETA DE NOX EN SIDEBAR
   ================================================== */

.nox-card {

  margin-top: 20px;

  border: 2px solid #6300DB;

  background-color: rgba(18, 0, 47, 0.78);

  padding: 14px;

  box-shadow:
    3px 3px 0 rgba(99, 0, 219, 0.18);

}


.nox-card-header h2 {

  font-family: "Daydream", serif;

  font-size: 20px;

  text-align: center;

  color: lavender;

  margin-top: 0;

  margin-bottom: 12px;

  border-bottom: 1px dashed #6300DB;

  padding-bottom: 7px;

}


.nox-avatar-space {

  min-height: 10px;

}


.nox-card-info p {

  margin: 8px 0;

  font-size: 15px;

}


.nox-card-info strong {

  color: #D8B4FF;

}


.nox-quote {

  margin: 12px 0 0;

  padding-top: 10px;

  border-top: 1px dashed #6300DB;

}


/* ==================================================
   STATUS
   ================================================== */

.status-link {
  display: inline;
  padding: 0;
  margin: 0;

  border: none;

  background: none;

  color: #D8B4FF;

  text-decoration: none;
}

.status-link:hover {
  color: white;
  text-decoration: underline;

  transform: none;
}

.status-box {

  margin-top: 15px;

  border: 2px solid #6300DB;

  background-color: rgba(18, 0, 47, 0.78);

  padding: 14px;

  box-shadow:
    3px 3px 0 rgba(99, 0, 219, 0.18);

}


.status-title {

  font-family: "Daydream", serif;

  font-size: 18px;

  text-align: center;

  color: lavender;

  border-bottom: 1px dashed #6300DB;

  padding-bottom: 7px;

  margin-bottom: 12px;

}


.status-online {

  text-align: center;

  color: #D8B4FF;

  margin-bottom: 12px;

}


.status-dot {

  display: inline-block;

  width: 8px;

  height: 8px;

  border-radius: 50%;

  background-color: #9DFFB0;

  box-shadow: 0 0 7px #9DFFB0;

  margin-right: 5px;

}


.status-info p {

  margin: 8px 0;

  font-size: 14px;

}


.status-info strong {

  color: #D8B4FF;

}


/* ==================================================
   INTRODUCCIÓN CON STICKERS
   ================================================== */

.intro-list {

  margin-top: 10px;

}


.intro-row {

  display: flex;

  align-items: center;

  gap: 15px;

  margin: 12px 0;

}


.intro-row img {

  width: 65px;

  height: 65px;

  object-fit: contain;

  flex-shrink: 0;

}


.intro-row p {

  margin: 0;

  flex: 1;

}


.intro-final {

  margin-top: 18px;

  padding-top: 15px;

  border-top: 1px dashed #6300DB;

}


/* ==================================================
   BIENVENIDA SIN CAJA
   ================================================== */

.welcome {

  padding: 10px 8px 25px;

}


.welcome h2 {

  margin-top: 0;

  color: lavender;

  border-bottom: 1px dashed #6300DB;

  padding-bottom: 9px;

  text-shadow:
    0 0 5px rgba(216, 180, 255, 0.35);

}


/* ==================================================
   VISITORS
   ================================================== */

.visitor-box {

  margin-top: 15px;

  border: 2px solid #6300DB;

  background-color: rgba(18, 0, 47, 0.78);

  padding: 14px;

  text-align: center;

  box-shadow:
    -3px 3px 0 rgba(99, 0, 219, 0.18);

}


.visitor-label {

  font-family: "Daydream", serif;

  font-size: 17px;

  color: #D8B4FF;

  border-bottom: 1px dashed #6300DB;

  padding-bottom: 7px;

  margin-bottom: 10px;

}


.visitor-counter {

  font-family: "VCRosdNEUE", serif;

  font-size: 25px;

  letter-spacing: 3px;

  color: lavender;

  text-shadow:
    0 0 6px #6300DB;

}


/* ==================================================
   CELULAR
   ================================================== */

@media (max-width: 700px) {

  .site-container {

    width: 95%;

  }


  .layout {

    grid-template-columns: 1fr;

  }


  .sidebar {

    order: 1;

  }


  .main-content {

    order: 2;

  }


  .right-sidebar {

    order: 3;

  }


  .banner {

    height: 180px;

  }


  .banner-text {

    padding-right: 20px;

  }


  .banner-text a,
  .banner-text a:link,
  .banner-text a:visited,
  .banner-text a:hover,
  .banner-text a:active {

    font-size: 38px;

  }


  .about-intro {

    flex-direction: column;

    align-items: center;

  }


  .about-avatar {

    max-width: 70%;

  }


  .favorites {

    grid-template-columns: 1fr;

  }
  


/* ==================================================
   INTRODUCCIÓN CON STICKERS
   ================================================== */

.intro-list {

  margin-top: 10px;

}


.intro-row {

  display: flex;

  align-items: center;

  gap: 15px;

  margin: 12px 0;

}


.intro-row img {

  width: 65px;

  height: 65px;

  object-fit: contain;

  flex-shrink: 0;

}


.intro-row p {

  margin: 0;

  flex: 1;

}


.intro-final {

  margin-top: 18px;

  padding-top: 15px;

  border-top: 1px dashed #6300DB;

}

}