/* ===== LOGO Y HEADER ===== */
.logo {
    width: auto;
    max-width: 200px; /* límite razonable para PC */
    height: auto;
}

.logo .imagen-artista {
    width: 100%;
    height: auto;
    display: block;
}

header {
    background-color: #FBE7CD;
    color: #000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* permite que elementos bajen en móviles */
}

header nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap; /* ajusta menú en varias líneas si es necesario */
    padding: 0;
    margin: 0;
    
}

.navigate {
    color: #333;

}


header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    font-weight: bold;
    font-family: 'Pacifico', cursive;
}

header nav ul li a:link,
header nav ul li a:visited {
  color: #333;   /* el color normal de tus enlaces */
  text-decoration: none;
}


header nav ul li a:hover {
    color: #d3bcb0;
}

/* ===== TIPOGRAFÍA ===== */
body {
    font-family: 'Delius', cursive;
    background-color: #ffecd4;
    color: #333;
    margin: 0;


}

h1, h2, h3 {
    font-family: 'Delius', cursive;
    color: #333;
}

/* ===== SECCIONES ===== */
section {
    padding: 40px 20px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}



/* ===== DISCOS ===== */
.album {
    margin-bottom: 40px;
    max-width: 100%;
}

.album img {
    width: 50%;
    height: auto;
    border-radius: 10px;
}

.album h3 {
    color: #333;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
}

/* ===== FORMULARIO ===== */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form input, form textarea {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    padding: 10px;
    background-color: #d35400;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #f39c12;
}

/* ===== PIE DE PÁGINA ===== */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%;
}

/* ===== MEDIA QUERIES PARA MÓVIL ===== */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    header nav ul {
        flex-direction: column;
        width: 100%;
    }

    header nav ul li {
        margin: 10px 0;
    }

    .logo {
        max-width: 150px;
        margin-bottom: 10px;
    }
}

.contact{
    font-family: 'Times New Roman', Times, serif;
}

.floating-word {
    font-family: 'Delius', cursive;  /* fuente */
    font-size: 20px;                  /* tamaño */
    color: #333;                   /* color */
    font-weight: bold;                /* grosor */
    position: absolute;               /* necesario para moverlas */
    pointer-events: none;             /* para que no interfieran con clicks */
    user-select: none;                /* no se pueden seleccionar */
}

