
@font-face {
  font-family: "SugarLoved";
  src: url("Fonts/Sugar Loved.ttf") format("truetype");
}

@font-face {
  font-family: "Quicksand";
  src: url("Fonts/Quicksand.ttf") format("truetype");
}

/* CURSORES */

body {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  background: linear-gradient(180deg, #c9f2ff, #ffd6e8, #fff2f8);
  color: #3a1f2e;

  cursor: url("Cursores/lacitocursor.webp"), auto;
}

a,
button,
.guestbook-link,
input[type="submit"] {
  cursor: url("Cursores/lacitocursor2.webp"), pointer;
}

input,
textarea {
  cursor: url("Cursores/lacitocursor.webp"), text;
}

/* LINKS */

a {
  color: #ff4d88;
}

a:hover {
  color: #ff7fb2;
}

/* TITLE */

.site-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    text-align: center;
    font-family: "SugarLoved", cursive;
    font-size: 50px;

    color: #d81b4e;

    text-shadow:
        2px 2px #ffd6e8,
        4px 4px #ffb3d1;

    padding: 18px;
}

.title-sticker {
    height: 50px;
}

/* LAYOUT */

.layout {
  display: flex;
  gap: 20px;
  padding: 20px;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .left-sidebar,
  .right-sidebar {
    width: auto;
  }
}

/* SIDEBARS */

.left-sidebar,
.right-sidebar {
  width: 220px;
  background: rgba(255,255,255,0.75);
  padding: 20px;
  border-radius: 20px;
}

/* MAIN */

main {
  flex: 1;
  background: rgba(255,255,255,0.85);
  padding: 20px;
  border-radius: 20px;
}

/* WELCOME */

.welcome-box {
    background: rgba(255,255,255,0.85);

    padding: 16px;

    border-radius: 16px;

    border: 2px dashed #ff4fa3;
}

/* SIDEBAR TITLES */

.sidebar-title {
    font-family: "SugarLoved", cursive;
    color: white;
    font-weight: normal;
    font-size: 20px;
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    margin-bottom: 10px;

    background: linear-gradient(
        to right,
        #d81b4e,
        #ff4fa3
    );

    padding: 8px;
    border-radius: 12px;
}

.sidebar-title img {
  width: 20px;
  height: 20px;
}

.now-playing-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ff4d88;
  font-family: "SugarLoved", cursive;
  font-size: 28px;
  margin-bottom: 10px;
}

.now-playing-title img {
  width: 40px;
  height: 40px;
}

/* TEXT */

p,
li {
  font-family: "Quicksand", sans-serif;
}

/* IMAGES */

img {
  max-width: 100%;
  display: block;
}

/* GUESTBOOK */

.guestbook {
  margin-top: 20px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  border: 2px solid #ffb3d1;
}

.guestbook h2 {
  font-family: "SugarLoved", cursive;
  color: #ff4d88;
}

.guestbook input,
.guestbook textarea,
.guestbook button {
  font-family: "Quicksand", sans-serif;
}

.guestbook input,
.guestbook textarea {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border-radius: 12px;
  border: 1px solid #ffb3d1;
  box-sizing: border-box;
}

.guestbook button {
  margin-top: 10px;
  padding: 10px 16px;
  border: none;
  border-radius: 12px;
  background: #ff8db5;
  color: white;
}

.guestbook button:hover {
  background: #ff76a7;
}

/* BUTTON GRID */

.button-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.button-grid a {
  display: flex;
  justify-content: center;
}

.button-grid img {
  width: 88px;
  height: auto;
}

/* NAVIGATION */

.nav-button {
    display: block;
    text-align: center;

    padding: 10px;
    margin-top: 10px;

    border-radius: 14px;

    background: linear-gradient(
        to bottom,
        #fff6fa,
        #ffe5ef
    );

    border: 2px solid #ff4fa3;

    color: #d81b4e;
    text-decoration: none;

    font-family: "Quicksand", sans-serif;
    font-weight: bold;

    transition: all 0.2s ease;
}

.nav-button:hover {
    background: linear-gradient(
        to bottom,
        #ff7f7f,
        #ff4fa3
    );

    color: white;

    transform: scale(1.05);
}

marquee img {
  display: inline;
  vertical-align: middle;
  margin-right: 4px;
}

.petalos {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-image: url("Fondos/Cerezos.webp");
  background-repeat: repeat;

  pointer-events: none;

  opacity: 0.6;

  z-index: -1;
}

.guestbook-page {
  background-image: url("Fondos/fondoguestbook.jpg");
  background-repeat: repeat;
  background-size: 200px;
}

.dialogo-corazon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.dialogo-corazon img {
  width: 30px; /* cambia este valor si los quieres más grandes o pequeños */
  height: auto;
}

.texto-dialogo {
  padding: 8px 12px;
  text-align: center;
  font-weight: bold;
  color: #ff4d88;
}

.counter-box {
    text-align: center;

    margin-top: 15px;
    padding: 10px;

    border: 2px dashed #ff4fa3;
    border-radius: 12px;

    background: rgba(255,255,255,0.85);
}

.about-tab {
  display: inline-block;
  padding: 8px 14px;
  margin: 5px;
  border-radius: 12px;
  border: 2px solid #ffb3d1;
  background: rgba(255,255,255,0.8);
  color: #ff4d88;
  text-decoration: none;
  font-weight: bold;
}

.about-tab:hover {
  background: #fff6fa;
}

.about-tabs {
  text-align: center;
  margin-bottom: 20px;
}

.quiz-result {
  background: rgba(255,255,255,0.7);
  border: 2px dashed #ffb3d1;
  border-radius: 15px;
  padding: 12px;
  margin-bottom: 15px;
}

#gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

#gallery img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    background: white;
    border: 3px solid #ffb3d1;
    border-radius: 12px;
    padding: 5px;
}

.shelf {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.shelf img {
    max-height: 200px;

    border-radius: 8px;
    border: 2px solid #ffd966;

    transition: transform 0.2s;
}

.shelf img:hover {
    transform: scale(1.08);
}

.game-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px dashed #ffd966;
}

.game-info h3 {
    margin-bottom: 10px;
}

.status-box {
    background: linear-gradient(
        to bottom,
        #fffafc,
        #ffe5ef
    );

    border: 3px dashed #ff4fa3;

    border-radius: 20px;

    max-width: 260px;

    margin: 20px auto;
    padding: 15px;

    font-size: 13px;
    line-height: 1.8;

    box-shadow:
        0 0 10px rgba(255,79,163,0.3);

    text-align: center;
}