/* styles.css */

/* Importación de fuente */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;900&display=swap');

/* Reglas globales */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1c1c1c; /* Fondo oscuro */
    color: #eaeaea; /* Texto gris claro */
    margin: 0;
    padding: 0;
}

.container {
    margin-top: 200px;
    margin-left: auto;
    margin-right: auto;
    max-width: fit-content;
    padding: 40px;
    background-color: #2c2c2c; /* Fondo gris oscuro */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    text-align: center;
}

/* Encabezado */
h1 {
    color: #8a2be2; /* Blanco */
    font-size: 2.5em;
    margin-bottom: 10px;
}

.subtitle {
    color: #9c9c9c; /* Gris claro */
    font-size: 1.5em;
    margin-bottom: 20px;
}

/* Iconos */
.icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.icons a img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.icons a:hover img {
    transform: scale(1.1);
}

/* Información de contacto */
.contact-info, .promo-text {
    margin-bottom: 20px;
}

.contact-info a, .promo-text a {
    color: #00bcd4; /* Azul claro */
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover, .promo-text a:hover {
    text-decoration: underline;
}

.emoji {
    width: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.cv-promo-text .cv-link {
    color: #4caf50; /* Verde */
}

.cv-promo-text .cv-link:hover {
    color: #81c784; /* Verde claro */
}

/* Mensaje de confirmación */
#emailCopiedMessage {
    text-align: center;
    color: #4caf50; /* Verde */
    font-weight: bold;
    margin-top: 20px;
    display: none;
}

#emailCopiedMessage.show {
    display: block;
}

/* Media queries para responsividad */
@media (max-width: 600px) {
    .icons {
        flex-direction: column;
        gap: 10px;
    }

    .icons a img {
        width: 40px;
        height: 40px;
    }
}
