/* Variables CSS */
:root {
    --primary-color: #751e48;
    --secondary-color: #ffffff;
    --font-primary: 'Montreal Serial x Bold Begular', sans-serif;
    --font-secondary: 'Irresistible Regular', sans-serif;
}

/* Fuentes personalizadas */
@font-face {
    font-family: 'Irresistible Regular';
    src: url('../assets/fonts/irresistible-webfont.woff2') format('woff2'),
         url('../assets/fonts/irresistible-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montreal Serial x Bold Begular';
    src: url('../assets/fonts/montrealserialxboldregular-webfont.woff2') format('woff2'),
         url('../assets/fonts/montrealserialxboldregular-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Estilos generales */
body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--secondary-color);
    margin: 0;
    padding: 0;
    /*background-color: var(--primary-color);*/
    background: linear-gradient(to bottom, #751e48, #a52a5a);
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: var(--primary-color);
}

header .logo img {
    max-width: 150px;
    height: auto;
}

/* Sección Hero */
.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-family: var(--font-primary);
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Pie de página */
footer {
    text-align: center;
    padding: 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Responsividad */
@media (max-width: 768px) {
    header .logo img {
        max-width: 100px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
}