/* === FUENTES PERSONALIZADAS === */
@font-face {
  font-family: 'DSFetteGotisch';
  src: url('fonts/dsfettegotisch-webfont.woff2') format('woff2'),
       url('fonts/dsfettegotisch-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'RacingSansOne';
  src: url('fonts/racingsansone-regular-webfont.woff2') format('woff2'),
       url('fonts/racingsansone-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff; /* Cambiá por el de tu imagen */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: sans-serif;
  text-align: center;
}

/* === CONTENEDOR === */
.container {
  max-width: 90vw;
  padding: 20px;
}

/* === TÍTULO (DORADO + REBORDE NEGRO FINO) === */
.titulo {
  font-family: 'DSFetteGotisch', sans-serif;
  font-size: 10.5rem;
  color: #cccccc; /* Dorado brillante */
  margin-bottom: 1rem;
  letter-spacing: 10px;
  
  /* REBORDE NEGRO FINO */
  -webkit-text-stroke: 1.5px #000000;
  text-stroke: 1.5px #000000;
  paint-order: stroke fill;
}

/* === LOGO === */
.logo {
  max-width: 70vw;
  max-height: 50vh;
  width: auto;
  height: auto;
  margin: 1.5rem 0;
}

/* === SUBTÍTULO (DORADO + REBORDE NEGRO FINO) === */
.subtitulo {
  font-family: 'RacingSansOne', sans-serif;
  font-size: 4rem;
  color: #cccccc; /*  */
  letter-spacing: 3px;
  text-transform: uppercase;
  
  /* REBORDE NEGRO FINO */
  -webkit-text-stroke: 1px #000000;
  text-stroke: 1px #000000;
  paint-order: stroke fill;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .titulo { 
    font-size: 3rem; 
    -webkit-text-stroke: 1.2px #000000; /* Más fino en móvil */
  }
  .subtitulo { 
    font-size: 1.4rem; 
    -webkit-text-stroke: 0.8px #000000;
  }
}