@font-face {
    font-family: 'Balquis';
    src: url('./fonts/BALQIS (1).woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Amelia';
    src: url('./fonts/Amelia-Basic (1).woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/bg.webp') center/cover no-repeat;
    z-index: -2;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85) 0%, rgba(45, 52, 65, 0.75) 100%);
    z-index: -1;
}

.link {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
    font-weight: 700;
}

.link:hover {
    color: rgb(246, 174, 174);
}

header {
    padding: 2rem 3rem;
    text-align: center;
}

.logo {
    font-family: 'Balquis', serif;
    font-size: 3.5rem;
    font-weight: normal;
    letter-spacing: 0.05em;
    color: #fff;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content {
    text-align: center;
    max-width: 700px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

h1 {
    font-family: 'Amelia', serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: normal;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

h1 em {
    font-style: normal;
}

.subtitle {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    margin: 2rem auto;
}

.message {
    font-family: 'Amelia', serif;
    font-size: 1.25rem;
    font-style: normal;
    color: rgba(255, 255, 255, 0.75);
}

footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

footer a {
    color: #c9a962;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #e0c17d;
}

@media (max-width: 768px) {
    body::before {
        position: absolute; /* En móviles usamos absolute en lugar de fixed */
        min-height: 100vh;
    }
    
    header {
        padding: 1.5rem;
    }
    
    .logo {
        font-size: 1.8rem;
        letter-spacing: 0.3em;
    }
    
    .content {
        padding: 0 1rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
}
