@font-face {
    font-family: 'valentine-cute';
    src: url('/fonts/Valentine Cute.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'lemon-milk';
    src: url('/fonts/LEMONMILK-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'beaming';
    src: url('/fonts/Beaming.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'vortigra';
    src: url('/fonts/Vortigra.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
  cursor: url('/img/cursor.png') 0 0, auto !important;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(-45deg, #d291bc, #f3c6e0, #f9a1bc, #c38edb);
    background-size: 2000% 2000%;
    animation: romanticGradient 8s ease-in-out infinite;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@keyframes romanticGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.containero {
    text-align: center;
    padding: 2rem;
    margin-top: 10rem;
}

.title {
    font-size: 4rem;
    color: #b30059;
    font-family: 'vortigra', sans-serif;
    margin: 0;
}

.subtitles {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.countdown {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #800040;
    margin-top: 4rem;
}

.nav-buttons a {
    display: inline-block;
    margin: 0 1rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #ff758c, #eb6ca1);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0 4px 7px rgba(255, 92, 145, 0.3);
    transition: background 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    user-select: none;
    letter-spacing: 0.03em;
    font-family: 'lemon-milk', sans-serif;
}

.nav-buttons a:hover {
    background: linear-gradient(135deg, #e6005c, #ff1a75);
    box-shadow: 0 8px 20px rgba(230, 0, 92, 0.3);
    transform: scale(1.08);
}

header {
    padding: 10px;
}

.logo {
    height: 55px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
    transform: scale(1.1);
}

/* MEDIA QUERIES - TABLET */
@media (max-width: 900px) {
  .containero {
    margin-top: 6rem;
    padding: 1.5rem;
  }

  .title {
    font-size: 3rem;
  }

  .subtitles {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .countdown {
    font-size: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }

  .nav-buttons a {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    margin: 0 0.7rem;
  }

  .logo {
    height: 45px;
  }
}

/* MEDIA QUERIES - MÓVIL */
@media (max-width: 767px) {
  body {
    padding: 1rem;
  }

  .containero {
    margin-top: 3rem;
    padding: 1rem;
  }

  .title {
    font-size: 2rem;
  }

  .subtitles {
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .countdown {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .nav-buttons a {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    margin: 1rem 0.5rem;
  }

  .logo {
    height: 3rem;
  }
}