/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ovo', serif;
    background-color: #fcfcfc;
    color: #0d1b2a;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Enlaces limpios */
.clean-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* Contenedor principal */
.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Título principal "Unfabricated" */
.brand-title {
    font-size: 80px;
    font-weight: 400;
    text-align: center;
    line-height: 1.1;
}

/* Contenedor de la información inferior */
.info-wrapper {
    display: flex;
    width: 520px;
    justify-content: space-between;
    font-size: 20px;
    line-height: 1.5;
}

.address-block {
    font-style: normal;
    text-align: left;
}

.extra-info {
    text-align: left;
}

/* RESPONSIVE: Solo reducir tamaños, mantener estructura */
@media (max-width: 540px) {
    .brand-title {
        font-size: 45px; /* Tamaño fijo más pequeño para móvil */
    }

    .info-wrapper {
        /* Mantenemos flex-direction por defecto (row) */
        gap: 1.5rem; /* Reducimos el espacio entre bloques */
        font-size: 12px; /* Texto más pequeño fijo */
        width: 300px;
        justify-content: space-between;
        align-self: center;
    }
    
    /* Aseguramos que no se peguen demasiado a los bordes si la pantalla es muy pequeña */
    .container {
        padding: 0 10px;
        justify-items: center;
    }
}
