/*
Theme Name: Fundación Peret - La Rumba
Author: Tu Nombre
Description: Tema de espera para la Fundación Peret y la Rumba Catalana.
Version: 1.0
*/

:root {
    --color-text: #080808;
    --color-gold: #d4aa00;
    --color-bg: #f7f5ef;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; /* Regular para textos */
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo-container img {
    max-width: 300px; /* Puedes ajustar este tamaño si el logo es muy grande */
    height: auto;
}

h1.main-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* Bold */
    text-transform: uppercase; /* Siempre en mayúsculas */
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

/* Detalle en color gold para darle vida al diseño */
h1.main-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-gold);
    margin: 20px auto 0 auto;
    border-radius: 2px;
}

p.main-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

footer {
    padding: 2rem;
    background-color: var(--color-bg);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icons a {
    color: var(--color-text);
    font-size: 2.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: var(--color-gold); /* Los iconos se vuelven gold (detalles) al pasar el ratón */
    transform: translateY(-3px);
}
